nopaque/app/main/__init__.py

6 lines
105 B
Python
Raw Normal View History

from flask import Blueprint
2023-05-11 14:33:21 +00:00
bp = Blueprint('main', __name__, cli_group=None)
2023-05-15 10:00:13 +00:00
from . import cli, routes