github.com/k0marov/go-socnet@v0.0.0-20220715154813-90d07867c782/core/general/periodic/periodic.go (about) 1 package periodic 2 3 import "time" 4 5 func RunPeriodically(f func(), period time.Duration) { 6 go func() { 7 for { 8 f() 9 time.Sleep(period) 10 } 11 }() 12 }