1
0
镜像自地址 https://github.com/tuna/tunasync.git 已同步 2025-12-07 06:56:47 +00:00

feat(tunasync): add tunasynctl reload subcommand

这个提交包含在:
bigeagle
2016-06-15 14:01:10 +08:00
父节点 8cb46476cf
当前提交 d292f9b0e3
共有 3 个文件被更改,包括 61 次插入1 次删除

查看文件

@@ -35,6 +35,7 @@ const (
CmdDisable // disable the job (stops goroutine)
CmdRestart // restart syncing
CmdPing // ensure the goroutine is alive
CmdReload // reload mirror config
)
func (c CmdVerb) String() string {
@@ -49,6 +50,8 @@ func (c CmdVerb) String() string {
return "restart"
case CmdPing:
return "ping"
case CmdReload:
return "reload"
}
return "unknown"
}