mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01: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()
|