authentik/proxy/main.go

12 lines
163 B
Go
Raw Normal View History

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