Commit: Bulk unfinished work

This commit is contained in:
2026-01-22 17:39:04 +01:00
parent 6c46b4efcc
commit 3a9acc42a2
68 changed files with 5047 additions and 1064 deletions

View File

@@ -0,0 +1,9 @@
package interfaces
import "context"
type BasicIntegration interface {
OnStart(context.Context) error
OnStop(context.Context) error
Invoke()
}