12 lines
170 B
Ruby
12 lines
170 B
Ruby
# frozen_string_literal: true
|
|
|
|
module EuchreCamp
|
|
module Views
|
|
module Players
|
|
class Show < EuchreCamp::View
|
|
expose :player
|
|
end
|
|
end
|
|
end
|
|
end
|