6 lines
91 B
Python
6 lines
91 B
Python
|
from flask import Blueprint
|
||
|
|
||
|
bp = Blueprint('main', __name__)
|
||
|
|
||
|
from app.main import routes
|