mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
14 lines
184 B
Go
14 lines
184 B
Go
package content
|
|
|
|
import ()
|
|
|
|
type Node struct {
|
|
Item *Item `json:"item"`
|
|
Nodes map[string]*Node `json:"nodes"`
|
|
}
|
|
|
|
func NewNode() *Node {
|
|
node := new(Node)
|
|
return node
|
|
}
|