9 lines
225 B
Ruby
9 lines
225 B
Ruby
# frozen_string_literal: true
|
|
|
|
module EuchreCamp
|
|
class Routes < Hanami::Routes
|
|
# Add your routes here. See https://guides.hanamirb.org/routing/overview/ for details.
|
|
get "/players/:id", to: "players.show"
|
|
end
|
|
end
|