commento/api/page.go

11 lines
200 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"`
}