sqm-dashboards/app/presenters/analyze/ui.rb
2022-11-18 08:20:26 -08:00

8 lines
119 B
Ruby

module Analyze
class Ui
attr_reader :params
def initialize(params:)
@params = params
end
end
end