11 lines
149 B
Python
11 lines
149 B
Python
"""View routing."""
|
|
from flask import Blueprint
|
|
|
|
home = Blueprint("home", __name__)
|
|
|
|
|
|
@home.route("/")
|
|
def hello_world():
|
|
|
|
return "Hello, World"
|