fix RouteIO interface

This commit is contained in:
Joel Wetzell
2026-02-05 19:51:09 -06:00
parent b959b88527
commit 1e872ba0b9

View File

@@ -31,7 +31,7 @@ type RouteIOError struct {
type RouteIO interface {
HandleInput(ctx context.Context, sourceId string, payload any) (bool, []RouteIOError)
HandleOutput(ctx context.Context, destinationId string, payload any) []error
HandleOutput(ctx context.Context, destinationId string, payload any) error
}
type Route interface {