mirror of
https://github.com/prymitive/karma
synced 2026-05-05 03:16:51 +00:00
14 lines
328 B
Go
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{})
|
|
}
|