Files
karma/internal/alertmanager/mapper.go
2024-04-03 13:55:52 +01:00

13 lines
278 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{})
}