mirror of
https://github.com/containrrr/watchtower.git
synced 2024-11-30 08:36:55 +02:00
15 lines
177 B
Go
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()
|
|
}
|