├── .gitignore ├── app.py ├── db ├── __init__.py ├── config.py ├── dals │ ├── __init__.py │ └── book_dal.py └── models │ ├── __init__.py │ └── book.py ├── dependencies.py └── routers ├── __init__.py └── book_router.py /.gitignore: -------------------------------------------------------------------------------- 1 | /venv/ 2 | /.idea/ 3 | /test.db 4 | -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azimovMichael/my-async-app/HEAD/app.py -------------------------------------------------------------------------------- /db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azimovMichael/my-async-app/HEAD/db/config.py -------------------------------------------------------------------------------- /db/dals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/dals/book_dal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azimovMichael/my-async-app/HEAD/db/dals/book_dal.py -------------------------------------------------------------------------------- /db/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/models/book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azimovMichael/my-async-app/HEAD/db/models/book.py -------------------------------------------------------------------------------- /dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azimovMichael/my-async-app/HEAD/dependencies.py -------------------------------------------------------------------------------- /routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /routers/book_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azimovMichael/my-async-app/HEAD/routers/book_router.py --------------------------------------------------------------------------------