Update app.py
Browse files
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'])
|