2018-07-05 13:06:52 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import ()
|
|
|
|
|
|
|
|
type page struct {
|
|
|
|
Domain string `json:"domain"`
|
|
|
|
Path string `json:"path"`
|
|
|
|
IsLocked bool `json:"isLocked"`
|
2018-09-23 12:40:06 +08:00
|
|
|
CommentCount int `json:"commentCount"`
|
2018-07-05 13:06:52 +08:00
|
|
|
}
|