mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-05-07 10:05:54 +00:00
10 lines
134 B
Go
10 lines
134 B
Go
package common
|
|
|
|
type WrappedPayload struct {
|
|
Payload any
|
|
Router RouteIO
|
|
Modules map[string]Module
|
|
Source string
|
|
End bool
|
|
}
|