mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-07 21:19:51 +00:00
12 lines
227 B
Go
12 lines
227 B
Go
package scheduler
|
|
|
|
import "context"
|
|
|
|
type workflowService interface {
|
|
InitSchedule(ctx context.Context) error
|
|
}
|
|
|
|
func InitWorkflowScheduler(service workflowService) error {
|
|
return service.InitSchedule(context.Background())
|
|
}
|