package interfaces import "context" type BasicIntegration interface { OnStart(context.Context) error OnStop(context.Context) error Invoke() }