9 lines
139 B
Python

from flask import Blueprint
m_print = Blueprint(
'print',
__name__,
template_folder='templates'
)
from . import views