mirror of
https://github.com/fergalmoran/emergelope.git
synced 2026-01-04 07:44:15 +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!"
|