mirror of
https://github.com/tickstep/aliyunpan.git
synced 2025-01-24 06:52:16 +08:00
22 lines
601 B
Go
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
|
|
)
|