This commit is contained in:
adlerhurst
2025-03-15 08:32:53 +01:00
parent 01499d77c7
commit bc6b1d3fcf
21 changed files with 456 additions and 556 deletions

View File

@@ -19,3 +19,7 @@ type Event interface{}
func (e *Eventstore) Push(ctx context.Context, events ...Event) error {
return nil
}
func Push(ctx context.Context, executor database.Executor, events ...Event) error {
return New(executor).Push(ctx, events...)
}