mybingai / app.py
Harry-zklcdc
[Fix] 🤗 Redirect Link to Official Web Site
81adaf9
raw
history blame contribute delete
No virus
291 Bytes
from flask import Flask, redirect
app = Flask(__name__)
@app.route('/<path:subpath>')
def subpath(subpath):
return redirect('https://www.b1ng.chat', code=302)
@app.route('/')
def index():
return redirect('https://www.b1ng.chat', code=302)
if __name__ == '__main__':
app.run()