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