mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
This is inline with other Subsonic compatible servers, like funkwhale, madsonic, ampache...
20 lines
311 B
Go
20 lines
311 B
Go
package consts
|
|
|
|
import "fmt"
|
|
|
|
var (
|
|
// This will be set in build time. If not, version will be set to "dev"
|
|
gitTag string
|
|
gitSha string
|
|
)
|
|
|
|
// Formats:
|
|
// dev
|
|
// v0.2.0 (5b84188)
|
|
// master (9ed35cb)
|
|
func Version() string {
|
|
if gitSha == "" {
|
|
return "dev"
|
|
}
|
|
return fmt.Sprintf("%s (%s)", gitTag, gitSha)
|
|
}
|