Download all report bysubcontractor id commit

This commit is contained in:
2025-12-12 18:38:50 +05:30
parent 2afd6c904a
commit b11a974869
10 changed files with 146 additions and 45 deletions

View File

@@ -29,23 +29,3 @@ def create_app():
return app
# from flask import Flask
# from app.config import Config
# def create_app():
# app = Flask(__name__)
# app.config.from_object(Config)
# # Register Blueprints
# from app.routes.dashboard import dashboard_bp
# from app.routes.file_import import file_import_bp
# from app.routes.user import user_bp
# app.register_blueprint(dashboard_bp)
# app.register_blueprint(file_import_bp)
# app.register_blueprint(user_bp)
# return app