Files
karma/internal/alertmanager/mapper.go
2020-02-12 16:09:55 +00:00

14 lines
328 B
Go

package alertmanager
import (
"github.com/prymitive/karma/internal/mapper"
v017 "github.com/prymitive/karma/internal/mapper/v017"
)
// initialize all mappers
func init() {
mapper.RegisterAlertMapper(v017.AlertMapper{})
mapper.RegisterSilenceMapper(v017.SilenceMapper{})
mapper.RegisterStatusMapper(v017.StatusMapper{})
}