Files
vt/fx/interfaces/integration.go
2026-01-22 17:39:04 +01:00

10 lines
147 B
Go

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