Files
showbridge-go/internal/common/routing.go
T

13 lines
243 B
Go

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