first commit

This commit is contained in:
2024-02-28 16:08:07 -05:00
commit 7556d1a75c
32 changed files with 1309 additions and 0 deletions

8
app/auth/__init__.py Normal file
View File

@@ -0,0 +1,8 @@
# coding=utf-8
from flask import Blueprint
auth = Blueprint('auth', __name__)
from . import views