9 lines
No EOL
260 B
Python
9 lines
No EOL
260 B
Python
from flask import Blueprint
|
|
|
|
main = Blueprint('main',
|
|
__name__,
|
|
template_folder='templates',
|
|
static_folder='static',
|
|
url_prefix='/main')
|
|
|
|
from app.main import routes |