1
0
mirror of https://github.com/taigrr/shorturl synced 2025-01-18 04:03:16 -08:00
shorturl/version.go

17 lines
319 B
Go

package main
var (
// Version release version
Version = "0.0.1"
// Build will be overwritten automatically by the build system
Build = "-dev"
// GitCommit will be overwritten automatically by the build system
GitCommit = "HEAD"
)
func FullVersion() string {
return Version + Build + " (" + GitCommit + ")"
}