mongoengine/mongomap/__init__.py
Harry Marr 5a87534c22 Got EmbeddedDocumentFields working
Added validation on EmbeddedDocumentField, added tests for
EmbeddedDocumentFields.
2009-11-17 01:32:40 +00:00

10 lines
166 B
Python

import document
from document import *
import fields
from fields import *
__all__ = document.__all__ + fields.__all__
__author__ = 'Harry Marr'
__version__ = '0.1'