go-proxy-bingai / app.py
zklcdc
Update app.py
b8b193e verified
raw
history blame
281 Bytes
from flask import Flask, redirect
app = Flask(__name__)
@app.route('/<path:subpath>')
def index():
return redirect('https://dongsiqie.me', code=302)
@app.route('/')
def index():
return redirect('https://dongsiqie.me', code=302)
if __name__ == '__main__':
app.run()