Files
euchre_camp/config/routes.rb
T
2024-09-12 19:06:02 -07:00

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