gowiki/pkg/core/const.go
2019-03-27 23:08:59 +01:00

15 lines
257 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"
)