Untitled
Anonymous
python
06/24/2024 4:36 PM
380 B
14
Indexable
@app.get("/")
async def main():
content = """
<body>
<form action="/uploadfiles/" enctype="multipart/form-data" method="post">
<input name="file" type="file">
<input type="submit">
</form>
</body>
"""
return HTMLResponse(content=content)Editor is loading...
Leave a Comment