9 lines
218 B
Go
9 lines
218 B
Go
package main
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
errDBNotConfigured = errors.New("Database connection string or database type were not set")
|
|
errUnsupportedDBType = errors.New("DBTYPE can only be one of postgres or sqlite3")
|
|
)
|