Files
showbridge-go/internal/common/module.go
2026-03-18 12:47:28 -05:00

14 lines
167 B
Go

package common
import (
"context"
)
type Module interface {
Id() string
Type() string
Start(context.Context) error
Stop()
Output(context.Context, any) error
}