mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08: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
|