mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
10 lines
214 B
Go
10 lines
214 B
Go
// contains data structures that describe content in a repository
|
|
package content
|
|
|
|
const (
|
|
// Indent for json indentation
|
|
Indent string = "\t"
|
|
// PathSeparator separator for paths in URIs
|
|
PathSeparator = "/"
|
|
)
|