mirror of
https://github.com/simon987/Architeuthis.git
synced 2025-04-18 07:16:42 +00:00
15 lines
186 B
Python
15 lines
186 B
Python
from flask import Flask
|
|
import time
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route("/")
|
|
def hello():
|
|
time.sleep(3)
|
|
return "Hello World!"
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run(port=9999)
|