7 lines
106 B
Python
7 lines
106 B
Python
|
from flask import Blueprint
|
||
|
|
||
|
home = Blueprint('home', __name__)
|
||
|
|
||
|
@home.route('/home')
|
||
|
def func():
|
||
|
pass
|