This repository has been archived on 2020-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
magic-app/magic_app/views.py

10 lines
148 B
Python

"""View routing."""
from flask import Blueprint
home = Blueprint("home", __name__)
@home.route("/")
def hello_world():
return "Hello, World"