mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
11 lines
206 B
Python
11 lines
206 B
Python
from mongoengine import *
|
|
|
|
from model.base import BaseModel
|
|
|
|
|
|
class Node(BaseModel):
|
|
_id = ObjectIdField()
|
|
node_ip = StringField()
|
|
node_name = StringField()
|
|
node_description = StringField()
|