Files
2026-07-01 16:40:42 +08:00

14 lines
232 B
Go

package scheduler
import (
"context"
)
type workflowService interface {
InitSchedule(ctx context.Context) error
}
func initWorkflowScheduler(service workflowService) error {
return service.InitSchedule(context.Background())
}