This commit is contained in:
adlerhurst
2025-02-13 13:49:55 +01:00
parent 66296db971
commit b85460152c
41 changed files with 2822 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
package eventstore
import (
"context"
"github.com/zitadel/zitadel/backend/storage/database"
)
type Eventstore struct {
executor database.Executor
}
func New(executor database.Executor) *Eventstore {
return &Eventstore{executor: executor}
}
type Event interface{}
func (e *Eventstore) Push(ctx context.Context, events ...Event) error {
return nil
}