authentik/outpost/main.go

12 lines
166 B
Go
Raw Normal View History

2020-09-02 23:04:12 +01:00
package main
import (
2021-01-09 20:50:48 +00:00
"github.com/BeryJu/authentik/outpost/cmd"
2020-09-02 23:04:12 +01:00
log "github.com/sirupsen/logrus"
)
func main() {
log.SetLevel(log.DebugLevel)
cmd.RunServer()
}