ahmad-elassuty/event_router

View on GitHub
examples/payment_received.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Examples
  class PaymentReceived < EventRouter::Event
    deliver_to :notifications,
               handler: Examples::Notifications
  end
end