initial commit. blankapp

This commit is contained in:
2024-01-18 21:15:56 +03:00
commit 6ecab7e786
8 changed files with 824 additions and 0 deletions

0
fastfood/__init__.py Normal file
View File

17
fastfood/app.py Normal file
View File

@@ -0,0 +1,17 @@
from fastapi import FastAPI
async def generate_test_data():
"""
Создание БД и наполнение ее данными
"""
pass
def create_app():
"""
Создание экземпляра приложения FastAPI и врзврат его
"""
app = FastAPI()
return app