This commit is contained in:
pika 2025-04-14 22:25:26 +02:00
commit 345a801c40
33 changed files with 5499 additions and 0 deletions

5
app/auth/__init__.py Normal file
View file

@ -0,0 +1,5 @@
from flask import Blueprint
bp = Blueprint('auth', __name__)
from app.auth import routes