Commit f0d9d133 by bergquist

tech(slack): format code using gofmt

parent 2d7bb4a9
......@@ -27,16 +27,16 @@ func NewSlackNotifier(model *m.AlertNotification) (alerting.Notifier, error) {
return &SlackNotifier{
NotifierBase: NewNotifierBase(model.Id, model.IsDefault, model.Name, model.Type, model.Settings),
Url: url,
Recipient: recipient,
Recipient: recipient,
log: log.New("alerting.notifier.slack"),
}, nil
}
type SlackNotifier struct {
NotifierBase
Url string
Url string
Recipient string
log log.Logger
log log.Logger
}
func (this *SlackNotifier) Notify(evalContext *alerting.EvalContext) error {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment