gpt-sovits / pkg /task /errors.go
hanfish's picture
111
215df2f verified
raw
history blame contribute delete
No virus
136 Bytes
package task
import "errors"
var (
ErrTaskNotFound = errors.New("task not found")
ErrTaskRunning = errors.New("task is running")
)