gowiki/pkg/core/const.go
2019-05-15 22:52:27 +02:00

19 lines
352 B
Go

// Copyright (C) 2019 Marius Schellenberger
package core
const (
IndexPage = "Index"
WikiSection = "wiki"
IndexURI = WikiSection + "/" + IndexPage
LoginURI = "/login"
LogoutURI = "/logout"
TotpURI = "/totp"
SectionsURI = "/sections"
BootstrapCSS = "/bootstrap.css"
CustomCSS = "/custom.css"
Favicon = "/favicon.ico"
)