CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/metasploit/framework/engine.rb
Views: 1904
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