nopaque/app/blueprints/users/__init__.py

8 lines
100 B
Python
Raw Normal View History

2022-07-04 12:09:17 +00:00
from flask import Blueprint
bp = Blueprint('users', __name__)
2023-04-11 09:46:33 +00:00
2024-12-16 09:07:21 +00:00
from . import cli, events, routes