add Stop function to module

This commit is contained in:
Joel Wetzell
2026-02-07 09:53:38 -06:00
parent 8f5091cf9b
commit 33ecc94097
19 changed files with 156 additions and 18 deletions

View File

@@ -19,6 +19,7 @@ type Module interface {
Id() string
Type() string
Run(context.Context) error
Stop()
Output(context.Context, any) error
}