(subs ...*types.Subscription)
| 612 | // SubsPersistenceInterface is an interface which defines methods for persistent storage of subscriptions. |
| 613 | type SubsPersistenceInterface interface { |
| 614 | Create(subs ...*types.Subscription) error |
| 615 | Get(topic string, user types.Uid, keepDeleted bool) (*types.Subscription, error) |
| 616 | Update(topic string, user types.Uid, update map[string]any) error |
| 617 | Delete(topic string, user types.Uid) error |
no outgoing calls