module Bot class Engine < ::Rails::Engine isolate_namespace Bot initializer 'bot.routes', after: 'action_dispatch.prepare_dispatcher' do |app| ActionDispatch::Routing::Mapper.send :include, ::Bot::RouteExtensions end end end