Files
cwsvJudo/homepage/participo/.vscode/launch.json
2024-02-24 10:56:28 +01:00

30 lines
918 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "post",
"type": "python",
"request": "launch",
"program": "testApi.py",
"console": "integratedTerminal",
"justMyCode": true,
"args": [
"POST",
"--input", "testShiai.json"
]
},
{
"name": "getTrainees",
"type": "python",
"request": "launch",
"program": "testApi.py",
"console": "integratedTerminal",
"justMyCode": true,
"args": [
"GET",
"--endpoint", "trainees" ]
} ]
}