Dashboard/app/presenters/dashboard/analyze/group/ell.rb
2024-01-26 19:07:15 -08:00

17 lines
217 B
Ruby

# frozen_string_literal: true
module Dashboard
module Analyze
module Group
class Ell
def name
"ELL"
end
def slug
"ell"
end
end
end
end
end