mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-11 16:24:11 +01:00
12 lines
235 B
Go
12 lines
235 B
Go
package api
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/photoprism/photoprism/internal/config"
|
|
"github.com/photoprism/photoprism/internal/util"
|
|
)
|
|
|
|
var (
|
|
ErrReadOnly = gin.H{"error": util.UcFirst(config.ErrReadOnly.Error())}
|
|
)
|