File size: 287 Bytes
c3a8f55 ec2b5a6 c3a8f55 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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') |