Remove go version

This commit is contained in:
Ben Sarmiento
2023-12-03 13:39:08 +01:00
parent e6ec369767
commit 324374d24b
3 changed files with 5 additions and 9 deletions

View File

@@ -1,8 +1,7 @@
package version
var (
BuiltAt string = ""
GoVersion string = ""
BuiltAt string = "uhm, now?"
GitCommit string = "docker image inspect ghcr.io/debridmediamanager/zurg-testing | grep Id"
Version string = "docker"
)
@@ -10,12 +9,11 @@ var (
func GetBuiltAt() string {
return BuiltAt
}
func GetGoVersion() string {
return GoVersion
}
func GetGitCommit() string {
return GitCommit
}
func GetVersion() string {
return Version
}