contentserver/content/content.go
2019-05-21 11:17:03 +02:00

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 = "/"
)