mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-04-26 12:55:29 +00:00
14 lines
167 B
Go
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
|
|
}
|