Versions in this module Expand all Collapse all v0 v0.1.0 May 13, 2025 Changes in this version + type Config struct + MaxEventsPerType int64 + Prefix string + func DefaultConfig() Config + type EventStore struct + func NewEventStore(db *sql.DB, config Config) (*EventStore, error) + func (s *EventStore) ClearEvents(ctx context.Context, eventName string) error + func (s *EventStore) Close() error + func (s *EventStore) GetEvents(ctx context.Context, eventName string, limit int64) ([]map[string]interface{}, error) + func (s *EventStore) StoreEvent(ctx context.Context, event mediator.Event) error