94ae490284
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
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)
|
|
}
|
|
}
|