From bd60f2af2125c8c35386460f8b79a5016728353a Mon Sep 17 00:00:00 2001 From: Casu Al Snek Date: Sat, 11 Jan 2025 13:49:22 +0545 Subject: [PATCH] Create framework for utils --- backend/app.py | 2 +- backend/utils/__init__.py | 0 backend/utils/utils.py | 0 3 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 backend/utils/__init__.py create mode 100644 backend/utils/utils.py diff --git a/backend/app.py b/backend/app.py index ef6d543..1a13e5d 100644 --- a/backend/app.py +++ b/backend/app.py @@ -7,7 +7,7 @@ app = Flask(__name__) app.config["SQLALCHEMY_DATABASE_URI"] = DB_URI db.init_app(app) -app.register_blueprint(profileBlueprint,url_prefix='/api') +app.register_blueprint(profileBlueprint, url_prefix='/api') @app.route('/', methods=['GET', 'POST']) diff --git a/backend/utils/__init__.py b/backend/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/utils/utils.py b/backend/utils/utils.py new file mode 100644 index 0000000..e69de29