handler.rb 219 B

123456789101112
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class SecureMailing::Backend::Handler
  3. def self.process(...)
  4. new(...).process
  5. end
  6. def type
  7. raise NotImplementedError
  8. end
  9. end