docstore/pkg/core/const.go
2021-02-18 22:36:49 +01:00

28 lines
528 B
Go

// Copyright (C) 2019 Marius Schellenberger
package core
const (
IndexURI = "/"
TotpURI = "/totp"
LoginURI = "/login"
LogoutURI = "/logout"
SearchURI = "/search"
LogsURI = "/logs"
TagsURI = "/tags"
StatsURI = "/stats"
UserURI = "/user"
RawPrefix = "/raw"
IndexPrefix = "/index"
RetagPrefix = "/retag"
UploadPrefix = "/upload"
NewPrefix = "/new"
MovePrefix = "/move"
TagsPrefix = "/tags"
DeletePrefix = "/delete"
WebDavPrefix = "/webdav"
StaticPrefix = "/static"
DataDir = "data"
)