feat: adding package pydantic
This commit is contained in:
parent
b53e5f4cb6
commit
06ae096c20
|
@ -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()
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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
|
Loading…
Reference in New Issue