grafana/pkg/api/dtos/live.go

12 lines
197 B
Go
Raw Normal View History

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