7 lines
147 B
Python
Executable file
7 lines
147 B
Python
Executable file
from flask import Blueprint
|
|
|
|
blueprint = Blueprint('blueprint', __name__)
|
|
|
|
@blueprint.route('/')
|
|
def home():
|
|
return "<p>Hello, Blueprint!</p>"
|