Files
showbridge-go/internal/common/routing.go
T
2026-05-19 21:46:48 -05:00

15 lines
260 B
Go

package common
import (
"context"
)
type RouteIO interface {
HandleInput(ctx context.Context, sourceId string, payload any) (bool, []RouteIOError)
}
type RouteIOError struct {
Index int `json:"index"`
ProcessError error `json:"processError"`
}