1
0
mirror of https://github.com/containrrr/watchtower.git synced 2024-11-30 08:36:55 +02:00
watchtower/main.go
2019-07-22 12:10:57 +02:00

15 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()
}