mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-01-20 18:25:29 +01:00
17 lines
325 B
Python
17 lines
325 B
Python
|
# TODO: create and read
|
||
|
|
||
|
import logging
|
||
|
|
||
|
from app.classes.web.base_api_handler import BaseApiHandler
|
||
|
|
||
|
|
||
|
logger = logging.getLogger(__name__)
|
||
|
|
||
|
|
||
|
class ApiServersServerTasksIndexHandler(BaseApiHandler):
|
||
|
def get(self, server_id: str, task_id: str):
|
||
|
pass
|
||
|
|
||
|
def post(self, server_id: str, task_id: str):
|
||
|
pass
|