This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/outpost/main.go

12 lines
166 B
Go
Raw Normal View History

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