6 lines
87 B
Python
6 lines
87 B
Python
from flask import Blueprint
|
|
|
|
bp = Blueprint('index', __name__)
|
|
|
|
from app import routes
|