10 lines
157 B
Go
10 lines
157 B
Go
// Copyright (C) 2018 Marius Schellenberger
|
|
|
|
package core
|
|
|
|
const (
|
|
IndexPage = "Index"
|
|
WikiSection = "wiki"
|
|
|
|
IndexURI = WikiSection + "/" + IndexPage
|
|
)
|