Files
authentik/outpost/pkg/version.go
Jens Langhammer 31a58e2c25 release: 2021.6.2
2021-06-22 23:35:10 +02:00

21 lines
277 B
Go

package pkg
import (
"fmt"
"os"
)
const VERSION = "2021.6.2"
func BUILD() string {
build := os.Getenv("GIT_BUILD_HASH")
if build == "" {
return "tagged"
}
return build
}
func UserAgent() string {
return fmt.Sprintf("authentik-outpost@%s (%s)", VERSION, BUILD())
}