mirror of
https://github.com/fergalmoran/emergelope.git
synced 2026-02-01 13:35:51 +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!"
|