commento/api/page.go

12 lines
251 B
Go
Raw Normal View History

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