10 lines
102 B
Go

package d1
import (
"errors"
)
var (
ErrDatabaseNotFound = errors.New("d1: database not found")
)