mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 17:25:44 +00:00
9 lines
136 B
Python
9 lines
136 B
Python
from flask import Blueprint
|
|
|
|
|
|
USERNAME_REGEX = '^[A-Za-zÄÖÜäöüß0-9_.]*$'
|
|
|
|
|
|
bp = Blueprint('auth', __name__)
|
|
from . import routes
|