1
0
mirror of https://github.com/containrrr/watchtower.git synced 2024-12-12 09:04:17 +02:00
watchtower/main.go

15 lines
177 B
Go
Raw Normal View History

2019-07-22 12:10:57 +02:00
package main
import (
2019-06-22 22:04:36 +02:00
"github.com/containrrr/watchtower/cmd"
log "github.com/sirupsen/logrus"
)
func init() {
log.SetLevel(log.InfoLevel)
}
func main() {
2019-07-21 22:22:30 +02:00
cmd.Execute()
}