File size: 264 Bytes
8d1819a
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from python.helpers.api import ApiHandler, Request, Response

from python.helpers import process

class Restart(ApiHandler):
    async def process(self, input: dict, request: Request) -> dict | Response:
        process.reload()
        return Response(status=200)