Golang Timer Hour plus tard Exécuter
func randomFunc() {
// do stuff
time.AfterFunc(4*time.Hour, func() { destroyObject("idofobject") })
// do other stuff
}
MrNtlu