8 lines
105 B
Go
8 lines
105 B
Go
package consts
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrLibraryNotFound = errors.New("未找到指定的资料库")
|
|
)
|