authentik/cmd/server/main.go

11 lines
102 B
Go

package main
import "os"
func main() {
err := rootCmd.Execute()
if err != nil {
os.Exit(1)
}
}