Ok this is the actual inital code... need to convert from mongo to sqlite...

This commit is contained in:
Alex Stevenson 2025-07-15 23:00:02 -04:00
parent 8c856ce465
commit 8fa1664bcb
13 changed files with 1168 additions and 0 deletions

11
entities/entity.rb Normal file
View file

@ -0,0 +1,11 @@
load "mongo_document_wrapper.rb"
class Entity < MongoDocumentWrapper
def initialize(mc, doc=nil)
super(mc, doc)
end
def resolve(target)
return nil
end
end