mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
14 lines
171 B
Go
14 lines
171 B
Go
package content
|
|
|
|
import ()
|
|
|
|
type Item struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name"`
|
|
URI string `json:"URI"`
|
|
}
|
|
|
|
func NewItem() *Item {
|
|
return new(Item)
|
|
}
|