OpenList / pkg /task /errors.go
lin7zhi's picture
Upload folder using huggingface_hub
619f93d verified
package task
import "errors"
var (
ErrTaskNotFound = errors.New("task not found")
ErrTaskRunning = errors.New("task is running")
)