realvis / app.py
MeowXD's picture
Update app.py
ec2b5a6 verified
raw
history blame contribute delete
287 Bytes
from flask import Flask
import requests
app = Flask(__name__)
main_text = "Meow!<br>This is new url of ddosxd/realvisxlv3.<br>This space will be works after some time when i recieve ZeroGPU"
@app.route('/')
def main_route():
return main_text
app.run(port=7860,host='0.0.0.0')