# 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" get "/admin/players/new", to: "admin.players.new" post "/admin/players", to: "admin.players.create" get "/admin/players", to: "admin.players.index" get "/admin/players/:id/edit", to: "admin.players.edit" patch "/admin/players/:id", to: "admin.players.update" delete "/admin/players/:id", to: "admin.players.destroy" end end