2025-10-15 10:43:58 -04:00

8 lines
77 B
Go

package ports
type Scheduler interface {
Start()
Stop()
Reload() error
}