mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
10 lines
158 B
Python
10 lines
158 B
Python
|
from flask import Flask
|
||
|
app = Flask(__name__)
|
||
|
|
||
|
@app.route("/")
|
||
|
def hello():
|
||
|
return "Hello World!"
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
app.run(host="0.0.0.0")
|