4 lines
84 B
Python
4 lines
84 B
Python
from flask import Blueprint
|
|
main = Blueprint('main', __name__)
|
|
from . import routes
|