Niansuh commited on
Commit
ca11ed7
·
verified ·
1 Parent(s): 98350d6

Delete app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -18
app.py DELETED
@@ -1,18 +0,0 @@
1
- from flask import Flask, redirect, abort, request
2
-
3
- app = Flask(__name__)
4
-
5
- @app.route('/')
6
- def index():
7
- return redirect('https://gem-bingo.hf.space', code=302)
8
-
9
- @app.route('/<path:path>', methods=['GET', 'POST'])
10
- def redirect_all(path):
11
- if 'create' in path or 'fd' in path or 'web' in path:
12
- return redirect('http://127.0.0.1', code=301)
13
- if request.method == 'POST':
14
- return redirect('http://127.0.0.1', code=301)
15
- return redirect('https://gem-bingo.hf.space', code=302)
16
-
17
- if __name__ == '__main__':
18
- app.run()