mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
10 lines
227 B
Go
10 lines
227 B
Go
package requests
|
|
|
|
// Env - abstract your server state
|
|
type Env struct {
|
|
// when resolving conten these are processed in their order
|
|
Dimensions []string `json:"dimensions"`
|
|
// who is it for
|
|
Groups []string `json:"groups"`
|
|
}
|