Skip to content

Commit

Permalink
Merge pull request grafana#1303 from daixiang0/mod
Browse files Browse the repository at this point in the history
Move from dep to go modules
  • Loading branch information
tomwilkie authored May 9, 2019
2 parents cb5dde9 + f04e921 commit b114d19
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions aws/metrics_autoscaling_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,10 @@ func (m *mockPrometheus) Snapshot(ctx context.Context, skipHead bool) (promV1.Sn
return promV1.SnapshotResult{}, errors.New("not implemented")
}

func (m *mockPrometheus) Rules(ctx context.Context) (promV1.RulesResult, error) {
return promV1.RulesResult{}, errors.New("not implemented")
}

func (m *mockPrometheus) Targets(ctx context.Context) (promV1.TargetsResult, error) {
return promV1.TargetsResult{}, errors.New("not implemented")
}

0 comments on commit b114d19

Please sign in to comment.