8 lines
104 B
Go
8 lines
104 B
Go
|
package types
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrDbTypeUnsupported = errors.New("database type unsupported")
|
||
|
)
|