feat: adding package pydantic

This commit is contained in:
akhdanre 2025-02-26 11:46:10 +07:00
parent b53e5f4cb6
commit 06ae096c20
2 changed files with 5 additions and 6 deletions

View File

@ -11,7 +11,6 @@ auth_blueprint = Blueprint("auth", __name__)
@auth_blueprint.route("/register", methods=["POST"])
@inject
def register(auth_controller: AuthController = Provide[Container.auth_controller]):
print(auth_controller.test(), file=sys.stderr)
return auth_controller.register()

View File

@ -1,7 +1,7 @@
Flask==3.0.3
numpy==2.1.2
pymongo
Flask-PyMongo
python-dotenv
dependency-injector
pytest
Flask-PyMongo==3.0.1
python-dotenv==1.0.1
dependency-injector==4.46.0
pytest==8.3.4
pydantic==2.10.6