mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 07:16:03 +01:00
19 lines
263 B
Ruby
19 lines
263 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
|
|
end
|
|
|
|
def call
|
|
raise NotImplementedError
|
|
end
|
|
end
|
|
end
|