CostHive/app/auth/__init__.py
Lunaresk b978e0da56 refactoring, reorganizing
Changed the folder structure for better maintenance and inserted
Dockerfile for image building.
2022-07-13 09:00:26 +02:00

5 lines
97 B
Python

from flask import Blueprint
bp = Blueprint('auth', __name__)
from app.auth import forms, routes