5 lines
92 B
Python
5 lines
92 B
Python
from flask import Blueprint
|
|
|
|
main = Blueprint('main', __name__)
|
|
|
|
from . import views, errors |