vigetlabs/special-delivery

View on GitHub
lib/special_delivery/drop_event.rb

Summary

Maintainability
A
0 mins
Test Coverage
module SpecialDelivery
  class DropEvent < BaseEvent

    private

    def callback_method
      :dropped
    end
  end
end