base.rb 151 B

1234567
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class Service::Base
  3. def execute
  4. raise NotImplementedError
  5. end
  6. end