(ownerID uuid.UUID)
| 12 | ) |
| 13 | |
| 14 | func InboxNotificationForOwnerEventChannel(ownerID uuid.UUID) string { |
| 15 | return fmt.Sprintf("inbox_notification:owner:%s", ownerID) |
| 16 | } |
| 17 | |
| 18 | func HandleInboxNotificationEvent(cb func(ctx context.Context, payload InboxNotificationEvent, err error)) func(ctx context.Context, message []byte, err error) { |
| 19 | return func(ctx context.Context, message []byte, err error) { |
no outgoing calls
no test coverage detected