8 lines
142 B
Python
8 lines
142 B
Python
from flask import Blueprint
|
|
|
|
bp = Blueprint('summary', __name__,
|
|
template_folder='')
|
|
|
|
from yasi_applets.summary import routes
|
|
|