mirror of
https://github.com/Mailu/Mailu.git
synced 2025-01-18 03:21:36 +02:00
7 lines
144 B
Python
7 lines
144 B
Python
from flask import Blueprint
|
|
|
|
|
|
ui = Blueprint('ui', __name__, static_folder='static', template_folder='templates')
|
|
|
|
from mailu.ui.views import *
|