mirror of
https://github.com/goauthentik/authentik
synced 2026-04-27 01:55:08 +02:00
11 lines
102 B
Go
11 lines
102 B
Go
package main
|
|
|
|
import "os"
|
|
|
|
func main() {
|
|
err := rootCmd.Execute()
|
|
if err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|