2022-06-01 21:55:03 +08:00
|
|
|
package syncdrive
|
|
|
|
|
|
|
|
const (
|
|
|
|
// DownloadingFileSuffix 下载中文件后缀
|
|
|
|
DownloadingFileSuffix string = ".aliyunpan"
|
|
|
|
|
2022-06-12 17:48:14 +08:00
|
|
|
// TimeSecondsOf30Seconds 30秒
|
|
|
|
TimeSecondsOf30Seconds int64 = 30
|
|
|
|
|
2022-06-01 21:55:03 +08:00
|
|
|
// TimeSecondsOfOneMinute 一分钟秒数
|
|
|
|
TimeSecondsOfOneMinute int64 = 60
|
|
|
|
|
2022-06-18 08:39:18 +08:00
|
|
|
// TimeSecondsOf2Minute 2分钟秒数
|
|
|
|
TimeSecondsOf2Minute int64 = 2 * TimeSecondsOfOneMinute
|
|
|
|
|
2022-06-01 21:55:03 +08:00
|
|
|
// 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
|
|
|
)
|
2022-08-13 19:38:10 +08:00
|
|
|
|
|
|
|
var (
|
|
|
|
LogPrompt = false
|
|
|
|
)
|