crawlab/core/entity/doc.go

9 lines
180 B
Go

package entity
type DocItem struct {
Title string `json:"title"`
Url string `json:"url"`
Path string `json:"path"`
Children []DocItem `json:"children"`
}