Files
GameServerBot/.vscode/launch.json
Mikhail Shahovalov cb6805e0c0 automap configs
2025-03-16 01:21:40 +03:00

21 lines
873 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
// Используйте IntelliSense, чтобы узнать о возможных атрибутах.
// Наведите указатель мыши, чтобы просмотреть описания существующих атрибутов.
// Для получения дополнительной информации посетите: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Отладчик Python: Модуль",
"type": "debugpy",
"request": "launch",
"module": "main"
},
{
"name": "Отладчик Python: Текущий файл",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}