mirror of
https://github.com/woodchen-ink/certimate.git
synced 2025-07-18 09:21:56 +08:00
12 lines
226 B
Go
12 lines
226 B
Go
package scheduler
|
|
|
|
import "context"
|
|
|
|
type WorkflowService interface {
|
|
InitSchedule(ctx context.Context) error
|
|
}
|
|
|
|
func NewWorkflowScheduler(service WorkflowService) error {
|
|
return service.InitSchedule(context.Background())
|
|
}
|