7 lines
87 B
Python
7 lines
87 B
Python
from flask import Blueprint
|
|
|
|
|
|
main = Blueprint('main', __name__)
|
|
|
|
|
|
from . import views
|