mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
44a795cb17
and misc cleanup
13 lines
217 B
Go
13 lines
217 B
Go
package dtos
|
|
|
|
import (
|
|
"time"
|
|
|
|
eval "github.com/grafana/grafana/pkg/services/ngalert"
|
|
)
|
|
|
|
type EvalAlertConditionCommand struct {
|
|
Condition eval.Condition `json:"condition"`
|
|
Now time.Time `json:"now"`
|
|
}
|