mirror of
https://github.com/fergalmoran/emergelope.git
synced 2025-12-25 02:48:06 +00:00
7 lines
102 B
Python
7 lines
102 B
Python
from flask import Flask
|
|
app = Flask(__name__)
|
|
|
|
@app.route("/")
|
|
def hello():
|
|
return "Hello World!"
|