mirror of
https://github.com/wahyd4/crawlab.git
synced 2026-08-13 23:27:36 +10:00
7 lines
135 B
Python
7 lines
135 B
Python
from mongoengine import *
|
|
import datetime
|
|
|
|
|
|
class BaseModel(Document):
|
|
create_ts = DateTimeField(default=datetime.datetime.utcnow)
|