grafana/pkg/api/dtos/live.go
2021-03-30 13:23:29 +03:00

12 lines
197 B
Go

package dtos
import "encoding/json"
type LivePublishCmd struct {
Channel string `json:"channel"`
Data json.RawMessage `json:"data,omitempty"`
}
type LivePublishResponse struct {
}