package pods import ( "time" ) func GarbageCollector() { for { Cleanup() time.Sleep(time.Minute * 10) } }