55693fab35
* Improve comment in classify package * improve comment in config package * improve entity package comments * grammar error in comments
12 lines
268 B
Go
12 lines
268 B
Go
package config
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// Define photoprism specific errors
|
|
var (
|
|
ErrReadOnly = errors.New("not available in read-only mode")
|
|
ErrUnauthorized = errors.New("please log in and try again")
|
|
ErrUploadNSFW = errors.New("upload might be offensive")
|
|
)
|