commento/api/comment.go

20 lines
535 B
Go
Raw Normal View History

package main
import (
"time"
)
type comment struct {
2018-06-11 01:43:42 +08:00
CommentHex string `json:"commentHex"`
Domain string `json:"domain,omitempty"`
Path string `json:"url,omitempty"`
CommenterHex string `json:"commenterHex"`
Markdown string `json:"markdown"`
Html string `json:"html"`
ParentHex string `json:"parentHex"`
Score int `json:"score"`
State string `json:"state"`
CreationDate time.Time `json:"creationDate"`
Direction int `json:"direction"`
}