bab8745ba8
git-svn-id: file:///home/svn/incoming/trunk@3573 4d416f70-5f16-0410-b530-b9f4589650da
23 lines
287 B
Ruby
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
|