10 lines
147 B
Go
10 lines
147 B
Go
package interfaces
|
|
|
|
import "context"
|
|
|
|
type BasicIntegration interface {
|
|
OnStart(context.Context) error
|
|
OnStop(context.Context) error
|
|
Invoke()
|
|
}
|