do some decent context reworking

This commit is contained in:
Joel Wetzell
2025-11-22 11:31:09 -06:00
parent 4ae5261d25
commit 51e656313c
9 changed files with 64 additions and 27 deletions

View File

@@ -1,7 +1,6 @@
package showbridge
import (
"context"
"fmt"
"sync"
)
@@ -16,7 +15,7 @@ type Module interface {
Id() string
Type() string
RegisterRouter(*Router)
Run(context.Context) error
Run() error
Output(any) error
}