mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-24 17:41:03 +01:00
12 lines
165 B
Python
12 lines
165 B
Python
from routes.base import BaseApi
|
|
|
|
|
|
class DeployApi(BaseApi):
|
|
col_name = 'deploys'
|
|
|
|
arguments = (
|
|
('spider_id', str),
|
|
('node_id', str),
|
|
)
|
|
|