Remove route "/" from the main router class. Must return 'not found' anyway.

This commit is contained in:
antisnatchor
2012-03-29 15:00:20 +02:00
parent b88acd98c8
commit addc256b8c

View File

@@ -23,10 +23,6 @@ module BeEF
configure do set :show_exceptions, false end
not_found do 'Not Found' end
get '/' do
'Try harder...muahah!'
end
end
end
end