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"])
|
||||
@inject
|
||||
def register(auth_controller: AuthController = Provide[Container.auth_controller]):
|
||||
print(auth_controller.test(), file=sys.stderr)
|
||||
return auth_controller.register()
|
||||
|
||||
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue