mirror of
https://github.com/taigrr/shorturl
synced 2025-01-18 04:03:16 -08:00
17 lines
319 B
Go
17 lines
319 B
Go
package main
|
|
|
|
var (
|
|
// Version release version
|
|
Version = "0.1.0"
|
|
|
|
// 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 + ")"
|
|
}
|