lint: fix linter issues

This commit is contained in:
Slyghtning 2026-03-05 12:18:05 +01:00
parent bb9124a80a
commit a10c741a26
No known key found for this signature in database
GPG key ID: F82D456EA023C9BF
54 changed files with 269 additions and 468 deletions

View file

@ -51,7 +51,7 @@ type EventType string
// EventContext represents the context to be passed to the action
// implementation.
type EventContext interface{}
type EventContext = any
// Action represents the action to be executed in a given state.
type Action func(ctx context.Context, eventCtx EventContext) EventType