add description in sell

This commit is contained in:
2025-12-29 21:12:31 +05:00
parent 0507624394
commit 2288e0b239
2 changed files with 5 additions and 3 deletions

View File

@ -29,7 +29,8 @@ async def sell_item(
slot_index: int = Body(...),
amount: int = Body(...),
price: int = Body(...),
server_ip: str = Body(...)
server_ip: str = Body(...),
description: Optional[str] = None,
):
"""Выставить предмет на продажу"""
from app.services.marketplace import MarketplaceService