From 1e872ba0b902631fec611f6711ce17d7f0180da6 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Thu, 5 Feb 2026 19:51:09 -0600 Subject: [PATCH] fix RouteIO interface --- internal/route/route.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/route/route.go b/internal/route/route.go index 554adc0..d447a83 100644 --- a/internal/route/route.go +++ b/internal/route/route.go @@ -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 {