mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
11 lines
343 B
Go
11 lines
343 B
Go
package requests
|
|
|
|
// Content - the standard request to contentserver
|
|
type Content struct {
|
|
Env *Env `json:"env"`
|
|
URI string `json:"URI"`
|
|
Nodes map[string]*Node `json:"nodes"`
|
|
DataFields []string `json:"dataFields"`
|
|
PathDataFields []string `json:"pathDataFields"`
|
|
}
|