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"]) @auth_blueprint.route("/register", methods=["POST"])
@inject @inject
def register(auth_controller: AuthController = Provide[Container.auth_controller]): def register(auth_controller: AuthController = Provide[Container.auth_controller]):
print(auth_controller.test(), file=sys.stderr)
return auth_controller.register() return auth_controller.register()

View File

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