docstore/pkg/core/const.go
2019-04-28 18:16:40 +02:00

24 lines
457 B
Go

// Copyright (C) 2019 Marius Schellenberger
package core
var (
IndexURI = "/"
TotpURI = "/totp"
LoginURI = "/login"
LogoutURI = "/logout"
RawPrefix = "/raw"
IndexPrefix = "/index"
MovePrefix = "/move"
DeletePrefix = "/delete"
Favicon = "/favicon.ico"
BootstrapCSS = "/bootstrap.css"
CustomCSS = "/custom.css"
DataDir = "data"
AutoImport = "auto_import"
ManualImport = "manual_import"
Imported = "imported"
)