go-proxy-bingai / app.py
zklcdc
Update app.py
258efe1 verified
raw
history blame
287 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()