go-proxy-bingai / app.py
dongsiqie's picture
Update app.py
cbf9276 verified
raw
history blame
183 Bytes
from flask import Flask, redirect
app = Flask(__name__)
@app.route('/')
def index():
return redirect('https://dongsiqie.me', code=302)
if __name__ == '__main__':
app.run()