Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/metasploit/framework/engine.rb
21545 views
1
#
2
# Gems
3
#
4
5
require 'rails/engine'
6
7
#
8
# Project
9
#
10
11
require 'metasploit/framework/common_engine'
12
13
module Metasploit
14
module Framework
15
class Engine < Rails::Engine
16
include Metasploit::Framework::CommonEngine
17
end
18
end
19
end
20
21