UBS-Server / routes /coolcodehack.py
m-abdur2024's picture
Upload 40 files
0d3476b verified
raw
history blame contribute delete
No virus
318 Bytes
import json
import logging
from flask import request, jsonify
from routes import app
logger = logging.getLogger(__name__)
username = "Boston3"
password = "Boston@HKU24"
@app.route('/coolcodehack', methods=['POST'])
def coolcodehack():
return jsonify({"username": username, "password": password})