mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-17 16:12:42 +08:00
15 lines
222 B
Go
15 lines
222 B
Go
package calendar
|
|
|
|
import "time"
|
|
|
|
type ScheduledExecutor struct {
|
|
}
|
|
|
|
func NewScheduledExecutor() *ScheduledExecutor {
|
|
return &ScheduledExecutor{}
|
|
}
|
|
|
|
func (e *ScheduledExecutor) Schedule(i any, duration time.Duration) {
|
|
|
|
}
|