mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-01-20 18:25:29 +01:00
147f178c87
THIS IS VERY UNTESTED AND WILL BE EXPANDED TO FULL CRUD FOR SCHEDULES
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
|