Files
res-downloader/core/shared/const.go
2025-05-14 17:51:36 +08:00

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"
)