23 lines
414 B
Go
23 lines
414 B
Go
// Copyright (C) 2019 Marius Schellenberger
|
|
|
|
package core
|
|
|
|
const (
|
|
IndexURI = "/"
|
|
TotpURI = "/totp"
|
|
LoginURI = "/login"
|
|
LogoutURI = "/logout"
|
|
|
|
RawPrefix = "/raw"
|
|
IndexPrefix = "/index"
|
|
UploadPrefix = "/upload"
|
|
NewPrefix = "/new"
|
|
MovePrefix = "/move"
|
|
DeletePrefix = "/delete"
|
|
|
|
Favicon = "/favicon.ico"
|
|
BootstrapCSS = "/bootstrap.css"
|
|
CustomCSS = "/custom.css"
|
|
|
|
DataDir = "data"
|
|
)
|