Geek7 commited on
Commit
12dc516
·
verified ·
1 Parent(s): e111830

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -157,7 +157,9 @@ def get_apk_link():
157
  return APK_DOWNLOAD_URL # ✅ Return latest APK link
158
 
159
 
160
-
 
 
161
 
162
 
163
  @app.route('/get_latest_version', methods=['GET'])
 
157
  return APK_DOWNLOAD_URL # ✅ Return latest APK link
158
 
159
 
160
+ @app.route('/get_webpage', methods=['GET'])
161
+ def get_webpage():
162
+ return jsonify({"url": "https://upload-apk.com"}) # ✅ Replace with your actual webpage URL
163
 
164
 
165
  @app.route('/get_latest_version', methods=['GET'])