watchtower/main.go
2024-07-08 15:27:17 +02:00

14 lines
175 B
Go

package main
import (
"github.com/beatkind/watchtower/cmd"
log "github.com/sirupsen/logrus"
)
func init() {
log.SetLevel(log.InfoLevel)
}
func main() {
cmd.Execute()
}