Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jokyone
/
go-proxy-bingai
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cbf9276
go-proxy-bingai
/
app.py
dongsiqie
Update app.py
cbf9276
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
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()