Make the route a one-liner

This commit is contained in:
swaggboi 2022-02-12 19:00:22 -05:00
parent 9a3de4e2d5
commit c2e8121ac8

View File

@ -7,6 +7,4 @@ before do
unless settings.development? || request.host =~ /^www\./
end
get '/*' do
erb(:index)
end
get('/*') { erb(:index) }