13 lines
242 B
Go
13 lines
242 B
Go
|
|
package server
|
||
|
|
|
||
|
|
const (
|
||
|
|
uploadRoot = "data/uploads"
|
||
|
|
boxManifestFile = ".warpbox.json"
|
||
|
|
boxPollInterval = 5000
|
||
|
|
|
||
|
|
fileStatusFailed = "failed"
|
||
|
|
fileStatusReady = "complete"
|
||
|
|
fileStatusWait = "pending"
|
||
|
|
fileStatusWork = "uploading"
|
||
|
|
)
|