mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 12:02:30 +08:00
9 lines
189 B
Go
9 lines
189 B
Go
package sqleng
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrParsingPostgresURL error = errors.New("error parsing postgres url")
|
|
ErrCertFileNotExist error = errors.New("certificate file doesn't exist")
|
|
)
|