(ctx context.Context, userID, templateID uuid.UUID, labels map[string]string, createdBy string, targets ...uuid.UUID)
| 38 | // Enqueuer enqueues a new notification message in the store and returns its ID, should it enqueue without failure. |
| 39 | type Enqueuer interface { |
| 40 | Enqueue(ctx context.Context, userID, templateID uuid.UUID, labels map[string]string, createdBy string, targets ...uuid.UUID) ([]uuid.UUID, error) |
| 41 | EnqueueWithData(ctx context.Context, userID, templateID uuid.UUID, labels map[string]string, data map[string]any, createdBy string, targets ...uuid.UUID) ([]uuid.UUID, error) |
| 42 | } |
no outgoing calls
no test coverage detected