remove unused router level output

This commit is contained in:
Joel Wetzell
2026-05-19 21:46:48 -05:00
parent 7913f5febc
commit 06a2a156c5
4 changed files with 2 additions and 71 deletions
-3
View File
@@ -6,12 +6,9 @@ import (
type RouteIO interface {
HandleInput(ctx context.Context, sourceId string, payload any) (bool, []RouteIOError)
HandleOutput(ctx context.Context, destinationId string, payload any) error
}
type RouteIOError struct {
Index int `json:"index"`
OutputError error `json:"outputError"`
ProcessError error `json:"processError"`
InputError error `json:"inputError"`
}