mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
11 lines
155 B
Go
11 lines
155 B
Go
package requests
|
|
|
|
type URIs struct {
|
|
Ids []string `json:"ids"`
|
|
Dimension string `json:"dimension"`
|
|
}
|
|
|
|
func NewURIs() *URIs {
|
|
return new(URIs)
|
|
}
|