mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
9 lines
180 B
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"`
|
|
}
|