grim/tagpull

Change the repo path and rename to tagops
draft
2019-12-30, Gary Kramlich
43e9ed2e7723
Change the repo path and rename to tagops
package main
import (
"os"
"time"
log "github.com/sirupsen/logrus"
)
func registryGetImageID(repository string) (string, error) {
return "", nil
}
func main() {
tickrate := 1 * time.Minute
namespace := ""
log.SetOutput(os.Stdout)
log.SetLevel(log.DebugLevel)
operator, err := NewOperator(tickrate, namespace)
if err != nil {
log.Fatalf("%v", err)
return
}
operator.Run()
}