class BotController < ApplicationController
  skip_before_action :verify_authenticity_token
  before_action :authenticate

  def players

  end

  def summary

  end

  def player_name

  end
end