commento/api/page.go

13 lines
307 B
Go
Raw Normal View History

package main
import ()
type page struct {
Domain string `json:"domain"`
Path string `json:"path"`
IsLocked bool `json:"isLocked"`
CommentCount int `json:"commentCount"`
StickyCommentHex string `json:"stickyCommentHex"`
2019-02-19 00:23:44 +08:00
Title string `json:"title"`
}