pcmt/app/error.go

9 lines
214 B
Go
Raw Normal View History

2023-05-04 16:38:15 +02:00
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")
)