Files
metasploit-gs/lib/msf/core/db_objects.rb
T
HD Moore bab8745ba8 Backend code
git-svn-id: file:///home/svn/incoming/trunk@3573 4d416f70-5f16-0410-b530-b9f4589650da
2006-03-21 04:37:48 +00:00

23 lines
287 B
Ruby

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