2018-07-05 13:06:52 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import ()
|
|
|
|
|
|
|
|
type page struct {
|
2018-12-20 11:57:02 +08:00
|
|
|
Domain string `json:"domain"`
|
|
|
|
Path string `json:"path"`
|
|
|
|
IsLocked bool `json:"isLocked"`
|
|
|
|
CommentCount int `json:"commentCount"`
|
2018-12-19 07:57:32 +08:00
|
|
|
StickyCommentHex string `json:"stickyCommentHex"`
|
2019-02-19 00:23:44 +08:00
|
|
|
Title string `json:"title"`
|
2018-07-05 13:06:52 +08:00
|
|
|
}
|