(20250730) - ADDED - Google Places API for and paper trading update api with required fies and changes.

This commit is contained in:
yatmesh
2025-07-30 10:05:46 +05:30
parent 5f493f0ba9
commit 84efe75c06
10 changed files with 1054 additions and 13 deletions
+2
View File
@@ -142,6 +142,7 @@ from api.blueprints.message.chat.tags import chat_update_tags_bp
from api.blueprints.software.auth import sw_auth_bp
from api.blueprints.software.oauth.request_v2 import places_oauth_request_bp
from api.blueprints.software.oauth.callback_v2 import places_oauth_callback_bp
from api.blueprints.software.google_places.get_place import google_places_bp
# Finstitutions / Payment Blueprints:
from api.blueprints.finstitutions.payments.auth_v2 import pg_auth_bp
@@ -224,6 +225,7 @@ app.register_blueprint(chat_update_tags_bp, url_prefix = f"/{MODULE_BASE}/chat")
app.register_blueprint(sw_auth_bp, url_prefix = f"/{MODULE_BASE}/software")
app.register_blueprint(places_oauth_request_bp, url_prefix = f"/{MODULE_BASE}/software")
app.register_blueprint(places_oauth_callback_bp, url_prefix = f"/{MODULE_BASE}/software")
app.register_blueprint(google_places_bp, url_prefix = f"/{MODULE_BASE}/software/googleplaces")
# Finstitutions / Payment Blueprints:
app.register_blueprint(pg_auth_bp, url_prefix = f"/{MODULE_BASE}/finstitutions/payments")