mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2025-06-07 14:48:13 +00:00
8 lines
100 B
Python
8 lines
100 B
Python
from flask import Blueprint
|
|
|
|
|
|
bp = Blueprint('users', __name__)
|
|
|
|
|
|
from . import cli, events, routes
|