10 lines
146 B
Go
10 lines
146 B
Go
|
package sinks
|
||
|
|
||
|
import (
|
||
|
"dynatron.me/x/stillbox/pkg/gordio/alerting"
|
||
|
)
|
||
|
|
||
|
func NewAlerterSink(a *alerting.Alerter) *alerting.Alerter {
|
||
|
return a
|
||
|
}
|