File size: 291 Bytes
05fca73
 
 
 
 
 
81adaf9
05fca73
 
 
81adaf9
05fca73
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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()