Files
discord-embed/.vscode/launch.json

18 lines
378 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Python: FastAPI",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": [
"discord_embed.main:app",
"--reload",
],
"jinja": true,
"justMyCode": true
}
]
}