gomog/internal/database/errors.go

10 lines
199 B
Go

package database
import "errors"
// 数据库适配器相关错误
var (
ErrNotImplemented = errors.New("method not implemented")
ErrCollectionNotFound = errors.New("collection not found")
)