mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 19:13:07 +08:00
13 lines
192 B
Go
13 lines
192 B
Go
package tsdb
|
|
|
|
type Query struct {
|
|
RefId string
|
|
Query string
|
|
Depends []string
|
|
DataSource *DataSourceInfo
|
|
Results []*TimeSeries
|
|
Exclude bool
|
|
}
|
|
|
|
type QuerySlice []*Query
|