go-proxy-bingai / app.py
jokyone's picture
Update app.py
a1192e1 verified
raw
history blame
297 Bytes
from flask import Flask, redirect
app = Flask(__name__)
@app.route('/<path:subpath>')
def subpath(subpath):
return redirect('https://webpho.pages.dev', code=302)
@app.route('/')
def index():
return redirect('https://webpho.pages.dev', code=302)
if __name__ == '__main__':
app.run()