mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-08-12 01:43:40 +00:00
13 lines
243 B
Go
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"`
|
|
}
|