contentserver/content/content.go
2016-03-07 16:30:47 +01:00

10 lines
213 B
Go

// contains data structures that describe content in a repository
package content
const (
// Indent for json indentation
Indent string = "\t"
// PathSeparator seprator for paths in URIs
PathSeparator = "/"
)