mirror of
https://github.com/syumai/workers.git
synced 2025-03-10 17:29:11 +00:00
10 lines
102 B
Go
10 lines
102 B
Go
package d1
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrDatabaseNotFound = errors.New("d1: database not found")
|
|
)
|