watchtower/main.go
2019-07-22 12:10:57 +02:00

14 lines
177 B
Go

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