1
0
镜像自地址 https://github.com/tuna/tunasync.git 已同步 2025-12-06 14:36:47 +00:00
文件
tunasync/worker/provider.go

14 行
220 B
Go

// mirror provider is the wrapper of mirror jobs
package worker
// a mirrorProvider instance
type mirrorProvider interface {
// run mirror job
Run()
// terminate mirror job
Terminate()
// get context
Context()
}