mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
12 lines
197 B
Go
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 {
|
|
}
|