This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
|
package pkg
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
const VERSION = "2021.6.1-rc1"
|
|
|
|
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())
|
|
}
|