Temporizador de Golang Hora más tarde ejecutar
func randomFunc() {
// do stuff
time.AfterFunc(4*time.Hour, func() { destroyObject("idofobject") })
// do other stuff
}
MrNtlu