aliyunpan/internal/syncdrive/sync_constants.go
2022-06-04 13:20:33 +08:00

22 lines
601 B
Go

package syncdrive
const (
// DownloadingFileSuffix 下载中文件后缀
DownloadingFileSuffix string = ".aliyunpan"
// TimeSecondsOfOneMinute 一分钟秒数
TimeSecondsOfOneMinute int64 = 60
// TimeSecondsOf5Minute 5分钟秒数
TimeSecondsOf5Minute int64 = 5 * TimeSecondsOfOneMinute
// TimeSecondsOf10Minute 10分钟秒数
TimeSecondsOf10Minute int64 = 10 * TimeSecondsOfOneMinute
// TimeSecondsOf30Minute 30分钟秒数
TimeSecondsOf30Minute int64 = 30 * TimeSecondsOfOneMinute
// TimeSecondsOf60Minute 60分钟秒数
TimeSecondsOf60Minute int64 = 60 * TimeSecondsOfOneMinute
)