layout / utils /database /lisence.py
hassanshka's picture
Add missing important files: _app_.py, utils/, CVAT_download/, manifest.json, and documentation
989ec3c
raw
history blame contribute delete
183 Bytes
from mongoengine import *
class LicenseModel(DynamicDocument):
id = SequenceField(primary_key=True)
name = StringField()
url = StringField()
__all__ = ["LicenseModel"]