class AdminController < ApplicationController
  layout 'admin'
  before_action :require_admin

  def index

  end
end