mirror of
https://github.com/elyby/accounts-profiles-endpoint.git
synced 2024-11-26 08:42:16 +05:30
15 lines
153 B
Go
15 lines
153 B
Go
package version
|
|
|
|
var (
|
|
version = "undefined"
|
|
commit = "unknown"
|
|
)
|
|
|
|
func Version() string {
|
|
return version
|
|
}
|
|
|
|
func Commit() string {
|
|
return commit
|
|
}
|