mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
12 lines
208 B
Go
12 lines
208 B
Go
package requests
|
|
|
|
type Content struct {
|
|
Env *Env `json:"env"`
|
|
URI string `json:"URI"`
|
|
Nodes map[string]*Node `json:"nodes"`
|
|
}
|
|
|
|
func NewContent() *Content {
|
|
return new(Content)
|
|
}
|