gowiki/pkg/core/const.go
2021-02-18 22:52:28 +01:00

26 lines
534 B
Go

// Copyright (C) 2021 Marius Schellenberger
package core
const (
IndexPage = "Index"
WikiSection = "wiki"
IndexURI = WikiSection + "/" + IndexPage
RootURI = "/"
WikiURI = "/wiki"
LoginURI = "/login"
LogoutURI = "/logout"
TotpURI = "/totp"
SectionsURI = "/sections"
SectionURI = "/section"
SearchURI = "/search"
StatsURI = "/stats"
NewURI = "/new"
BlacklistURI = "/blacklist"
UsersURI = "/users"
UserURI = "/user"
ViewURI = "/view"
StaticURI = "/static"
)