CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

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