Refactor singbox endpoints

This commit is contained in:
Iam54r1n4
2025-01-30 20:35:42 +00:00
parent 675a07513e
commit fa21cf5661

View File

@ -6,7 +6,7 @@ import cli_api
router = APIRouter() router = APIRouter()
@router.get('/start', response_model=DetailResponse) @router.post('/start', response_model=DetailResponse, summary='Start Singbox')
async def start(body: StartInputBody): async def start(body: StartInputBody):
""" """
Start the Singbox service. Start the Singbox service.
@ -26,8 +26,8 @@ async def start(body: StartInputBody):
raise HTTPException(status_code=400, detail=f'Error: {str(e)}') raise HTTPException(status_code=400, detail=f'Error: {str(e)}')
@router.get('/stop', response_model=DetailResponse) @router.get('/stop', response_model=DetailResponse, summary='Stop Singbox')
async def stop(): async def delete():
""" """
Stop the Singbox service. Stop the Singbox service.