12 lines
163 B
Go
12 lines
163 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/BeryJu/passbook/proxy/cmd"
|
||
|
log "github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
log.SetLevel(log.DebugLevel)
|
||
|
cmd.RunServer()
|
||
|
}
|