mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
9 lines
183 B
Go
9 lines
183 B
Go
package requests
|
|
|
|
// Nodes - which nodes in which dimensions
|
|
type Nodes struct {
|
|
// map[dimension]*node
|
|
Nodes map[string]*Node `json:"nodes"`
|
|
Env *Env `json:"env"`
|
|
}
|