9 lines
214 B
Go
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")
|
|
)
|