mirror of https://gitee.com/answerdev/answer.git
11 lines
154 B
Go
11 lines
154 B
Go
|
package cron
|
||
|
|
||
|
import (
|
||
|
"github.com/google/wire"
|
||
|
)
|
||
|
|
||
|
// ProviderSetService is providers.
|
||
|
var ProviderSetService = wire.NewSet(
|
||
|
NewScheduledTaskManager,
|
||
|
)
|