class HeroController < ApplicationController
	def index
		@heroes = Hero.all
		render "heroes.html.erb"
	end
end