mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 15:38:21 -07:00
8 lines
119 B
Ruby
8 lines
119 B
Ruby
module Analyze
|
|
class Ui
|
|
attr_reader :params
|
|
def initialize(params:)
|
|
@params = params
|
|
end
|
|
end
|
|
end
|