zammad/lib/secure_mailing/backend/handler.rb
2026-01-02 15:41:09 +02:00

12 lines
219 B
Ruby

# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
class SecureMailing::Backend::Handler
def self.process(...)
new(...).process
end
def type
raise NotImplementedError
end
end