Bel LaPointe 2025-02-12 12:01:39 -07:00
parent 7450ba86b6
commit caea2926c5
2 changed files with 4 additions and 0 deletions

View File

@ -39,6 +39,8 @@ func upsertEvent(ctx context.Context, templateID int, e template.Event) error {
func (t *Template) apply(e template.Event) error {
switch e := e.(type) {
case *int:
_ = e
}
return nil
}

View File

@ -39,6 +39,8 @@ func upsertEvent(ctx context.Context, priceIsWrongID int, e priceiswrong.Event)
func (p *PriceIsWrong) apply(e priceiswrong.Event) error {
switch e := e.(type) {
case *int:
_ = e
}
return nil
}