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/proxy/main.go

12 lines
164 B
Go
Raw Permalink Normal View History

2020-09-02 22:04:12 +00:00
package main
import (
2020-12-05 21:08:42 +00:00
"github.com/BeryJu/authentik/proxy/cmd"
2020-09-02 22:04:12 +00:00
log "github.com/sirupsen/logrus"
)
func main() {
log.SetLevel(log.DebugLevel)
cmd.RunServer()
}