refactor(weather.app): move routes to weather.app module

This commit is contained in:
2024-07-29 00:50:25 +03:00
parent 1fb627110d
commit 22fab7a15a
17 changed files with 31 additions and 9 deletions

30
weather.code-workspace Normal file
View File

@@ -0,0 +1,30 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
"python.testing.pytestArgs": ["tests", "-s"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"files.exclude": {
"**/__pycache__": true
},
"terminal.integrated.env.linux": {
"PYTHONPATH": "${workspaceFolder}"
}
},
"launch": {
"version": "0.2.1",
"configurations": [
{
"name": "app",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": ["weather.main:app", "--reload"]
}
]
}
}