mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 11:26:04 +01:00
2dac4c09ed
Co-authored-by: Georg Gadinger <nilsding@nilsding.org>
15 lines
239 B
Ruby
15 lines
239 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "dry-initializer"
|
|
require "types"
|
|
require "errors"
|
|
|
|
module UseCase
|
|
class Base
|
|
extend Dry::Initializer
|
|
|
|
def self.call(...) = new(...).call
|
|
|
|
def call = raise NotImplementedError
|
|
end
|
|
end
|