nopaque/app/blueprints/users/__init__.py

8 lines
100 B
Python
Raw Permalink Normal View History

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