(ctx context.Context, uuid string)
| 21 | type Store interface { |
| 22 | Store(ctx context.Context, ev Event) error |
| 23 | FindByUUID(ctx context.Context, uuid string) (*Event, error) |
| 24 | FindAll(ctx context.Context, opts FindOptions) ([]Event, error) |
| 25 | Delete(ctx context.Context, uuid string) error |
| 26 | DeleteAll(ctx context.Context, opts DeleteOptions) error |
no outgoing calls