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