mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2026-07-28 23:13:43 -04:00
10 lines
180 B
Go
10 lines
180 B
Go
package database
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
Err = errors.New("postgres")
|
|
ErrUninitialized = errors.New("uninitialized")
|
|
ErrPingFailed = errors.New("ping failed")
|
|
)
|