mirror of
https://github.com/prymitive/karma
synced 2026-02-13 20:59:53 +00:00
13 lines
278 B
Go
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{})
|
|
}
|