mirror of
https://github.com/AlistGo/alist.git
synced 2025-04-21 20:18:47 +08:00
9 lines
172 B
Go
9 lines
172 B
Go
package errs
|
|
|
|
import "fmt"
|
|
|
|
var (
|
|
SearchNotAvailable = fmt.Errorf("search not available")
|
|
BuildIndexIsRunning = fmt.Errorf("build index is running, please try later")
|
|
)
|