26 lines
534 B
Go
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"
|
|
)
|