switch modules to accept an InputHandler instead of the full router

This commit is contained in:
Joel Wetzell
2026-05-20 21:03:41 -05:00
parent be0b1c4a5f
commit 4cedd58a76
31 changed files with 301 additions and 297 deletions
+5 -5
View File
@@ -1,9 +1,9 @@
package common
type WrappedPayload struct {
Payload any
Router RouteIO
Modules map[string]Module
Source string
End bool
Payload any
InputHandler InputHandler
Modules map[string]Module
Source string
End bool
}