11 lines
173 B
Ruby
11 lines
173 B
Ruby
load "mongo_document_wrapper.rb"
|
|
|
|
class Entity < MongoDocumentWrapper
|
|
def initialize(mc, doc=nil)
|
|
super(mc, doc)
|
|
end
|
|
|
|
def resolve(target)
|
|
return nil
|
|
end
|
|
end
|