mirror of
https://github.com/flibusta-apps/telegram_files_server.git
synced 2025-12-06 12:35:39 +01:00
Fix
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
from typing import Optional
|
from typing import Annotated, Optional
|
||||||
|
|
||||||
from fastapi import APIRouter, Depends, File, Form, HTTPException, UploadFile, status
|
from fastapi import APIRouter, Depends, Form, HTTPException, UploadFile, status
|
||||||
from fastapi.responses import StreamingResponse
|
from fastapi.responses import StreamingResponse
|
||||||
|
|
||||||
from app.depends import check_token
|
from app.depends import check_token
|
||||||
@@ -16,9 +16,9 @@ router = APIRouter(
|
|||||||
|
|
||||||
@router.post("/upload/", response_model=UploadedFile)
|
@router.post("/upload/", response_model=UploadedFile)
|
||||||
async def upload_file(
|
async def upload_file(
|
||||||
file: UploadFile = File({}),
|
file: UploadFile,
|
||||||
file_size: int = Form({}),
|
file_size: Annotated[int, Form()],
|
||||||
caption: Optional[str] = Form({}),
|
caption: Annotated[Optional[str], Form()],
|
||||||
):
|
):
|
||||||
return await FileUploader.upload(file, file_size, caption=caption)
|
return await FileUploader.upload(file, file_size, caption=caption)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user