mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
12 lines
176 B
Go
12 lines
176 B
Go
package requests
|
|
|
|
type URI struct {
|
|
Id string `json:"id"`
|
|
Region string `json:"region"`
|
|
Language string `json:"language"`
|
|
}
|
|
|
|
func NewURI() *URI {
|
|
return new(URI)
|
|
}
|