class <%= @app_name %>

get '/' do
  get_index
end

# The route matches "/show" and "/show/".
get '/show/?' do
  slim 'show'
end

end