mirror of
https://github.com/containrrr/watchtower.git
synced 2025-12-13 21:56:38 +01:00
14 lines
177 B
Go
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()
|
|
}
|