about summary refs log tree commit diff
path: root/internal/version/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/version/main.go')
-rw-r--r--internal/version/main.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/internal/version/main.go b/internal/version/main.go
deleted file mode 100644
index d8a745f..0000000
--- a/internal/version/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-package version
-
-import "fmt"
-
-var Version, BuildDate string
-
-func VersionAndBuildInfo() string {
-	if Version != "" {
-		return fmt.Sprintf("version: %s, build on: %s", Version, BuildDate)
-	}
-	return "(unknown)"
-}