mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
5304178165
Adds a dedicated authelia code/doc gen command.
17 lines
265 B
Go
Executable File
17 lines
265 B
Go
Executable File
//usr/bin/env go run "$0" "$@"; exit
|
|
//nolint:gocritic
|
|
|
|
package main
|
|
|
|
import (
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/authelia/authelia/v4/cmd/authelia-scripts/cmd"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.NewRootCmd().Execute(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|