mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-08-10 08:53:38 +00:00
10 lines
164 B
Go
10 lines
164 B
Go
package common
|
|
|
|
type WrappedPayload struct {
|
|
Payload any
|
|
InputHandler InputHandler
|
|
Modules map[string]Module
|
|
Source string
|
|
End bool
|
|
}
|