authentik/outpost/pkg/version.go

17 lines
222 B
Go
Raw Normal View History

package pkg
import (
"fmt"
"os"
)
2021-05-17 18:54:10 +01:00
const VERSION = "2021.5.2"
func BUILD() string {
return os.Getenv("GIT_BUILD_HASH")
}
func UserAgent() string {
return fmt.Sprintf("authentik-outpost@%s (%s)", VERSION, BUILD())
}