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