package pods import ( "time" ) func GarbageCollector() error { for { err := Cleanup() if err != nil { return err } time.Sleep(time.Minute * 10) } }