Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# frozen_string_literal: true
# This file is used by Rack-based servers to start the application.
require File.expand_path("config/environment", __dir__)
if defined?(CanvasRails)
run CanvasRails::Application
else
run ActionController::Dispatcher.new
end