Files
TeraHz/flask/helloworld.py
2019-01-19 13:23:37 +01:00

6 lines
129 B
Python

from flask import Flask
application = Flask(__name__)
@application.route('/')
def helloworld():
return 'Hello there, world!'