docstore/pkg/core/const.go
2019-08-24 17:42:02 +02:00

29 lines
559 B
Go

// Copyright (C) 2019 Marius Schellenberger
package core
const (
IndexURI = "/"
TotpURI = "/totp"
LoginURI = "/login"
LogoutURI = "/logout"
SearchURI = "/search"
LogsURI = "/logs"
TagsURI = "/tags"
UserURI = "/user"
RawPrefix = "/raw"
IndexPrefix = "/index"
ReindexPrefix = "/reindex"
UploadPrefix = "/upload"
NewPrefix = "/new"
MovePrefix = "/move"
TagsPrefix = "/tags"
DeletePrefix = "/delete"
Favicon = "/favicon.ico"
BootstrapCSS = "/bootstrap.css"
CustomCSS = "/custom.css"
DataDir = "data"
)