mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 18:13:32 -06:00
14 lines
268 B
Go
14 lines
268 B
Go
package commentmodel
|
|
|
|
type EventType string
|
|
|
|
const (
|
|
EventCommentCreated EventType = "commentCreated"
|
|
)
|
|
|
|
// Event represents comment event structure.
|
|
type Event struct {
|
|
Event EventType `json:"event"`
|
|
CommentCreated *CommentDto `json:"commentCreated"`
|
|
}
|