2022-06-01 21:55:03 +08:00
|
|
|
package syncdrive
|
|
|
|
|
|
|
|
const (
|
|
|
|
// DownloadingFileSuffix 下载中文件后缀
|
|
|
|
DownloadingFileSuffix string = ".aliyunpan"
|
|
|
|
|
|
|
|
// TimeSecondsOfOneMinute 一分钟秒数
|
|
|
|
TimeSecondsOfOneMinute int64 = 60
|
|
|
|
|
|
|
|
// TimeSecondsOf5Minute 5分钟秒数
|
|
|
|
TimeSecondsOf5Minute int64 = 5 * TimeSecondsOfOneMinute
|
2022-06-04 13:20:33 +08:00
|
|
|
|
|
|
|
// TimeSecondsOf10Minute 10分钟秒数
|
|
|
|
TimeSecondsOf10Minute int64 = 10 * TimeSecondsOfOneMinute
|
|
|
|
|
|
|
|
// TimeSecondsOf30Minute 30分钟秒数
|
|
|
|
TimeSecondsOf30Minute int64 = 30 * TimeSecondsOfOneMinute
|
|
|
|
|
|
|
|
// TimeSecondsOf60Minute 60分钟秒数
|
|
|
|
TimeSecondsOf60Minute int64 = 60 * TimeSecondsOfOneMinute
|
2022-06-01 21:55:03 +08:00
|
|
|
)
|