pcmt/app/error.go
leo 9fd55dbc0b
All checks were successful
continuous-integration/drone/push Build is passing
app: pre-declare errors
2023-05-04 16:38:15 +02:00

9 lines
214 B
Go

package app
import "errors"
var (
ErrAppSettingsUnset = errors.New("somehow we got here with settings unset - contact the developer")
ErrAppAlreadyInitialised = errors.New("app was already initialised")
)