mirror of
https://github.com/wahyd4/crawlab.git
synced 2026-08-11 06:06:45 +10:00
10 lines
173 B
Python
10 lines
173 B
Python
from mongoengine import *
|
|
|
|
from model.base import BaseModel
|
|
|
|
|
|
class Task(BaseModel):
|
|
_id = ObjectIdField()
|
|
deploy_id = ObjectIdField()
|
|
file_path = StringField()
|