blob: b34e3a2d8e780403624a4d4baaab91b094602df7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
package main
import (
"errors"
)
var (
err_deliver_write = errors.New("unable to write to filesystem while attempting to deliver message")
err_unsupported_database_type = errors.New("unsupported database type; only \"postgres\" is currently supported")
)
|