# frozen_string_literal: true module EuchreCamp module Actions module Admin module Players class Index < EuchreCamp::Action include Deps[repo: 'repositories.players'] def handle(_request, response) players = repo.all response.render(view, players: players) end end end end end end