mirror of
https://github.com/putyy/res-downloader.git
synced 2026-01-12 22:34:56 +08:00
10 lines
257 B
Go
10 lines
257 B
Go
package shared
|
|
|
|
const (
|
|
DownloadStatusReady string = "ready" // task create but not start
|
|
DownloadStatusRunning string = "running"
|
|
DownloadStatusError string = "error"
|
|
DownloadStatusDone string = "done"
|
|
DownloadStatusHandle string = "handle"
|
|
)
|