index.go 140 B

123456789
  1. package client
  2. // RunCycle 周期运行
  3. func RunCycle() {
  4. // delete old backup
  5. go DeleteOldBackup()
  6. // start client
  7. go StartBackup()
  8. }