Files
metasploit-gs/lib/msf/core/db_objects.rb
T

23 lines
287 B
Ruby
Raw Normal View History

2006-03-21 04:37:48 +00:00
module Msf
##
#
# This module defines all of the DB database tables
# and creates ActiveRecord objects for each one of them
#
##
class DBManager
# Host object definition
class Host < ActiveRecord::Base
end
# Service object definition
class Service < ActiveRecord::Base
end
end
end