Files
gin-gonic-prepack/scheduled/scheduled.go
2022-05-04 20:51:22 +02:00

19 lines
232 B
Go

package scheduled
import (
"fmt"
"time"
)
type Scheduled func() (string, time.Duration)
func Schedule(f Scheduled) {
print, wait := f()
fmt.Println(print)
go func(w time.Duration) {
time.Sleep(w)
Schedule(f)
}(wait)
}