Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
lin7zhi
/
OpenList
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
OpenList
/
pkg
/
task
/
errors.go
lin7zhi
Upload folder using huggingface_hub
619f93d
verified
24 days ago
raw
Copy download link
history
blame
contribute
delete
136 Bytes
package
task
import
"errors"
var
(
ErrTaskNotFound = errors.New(
"task not found"
)
ErrTaskRunning = errors.New(
"task is running"
)
)