This repository has been archived on 2025-03-08. You can view files and clone it, but cannot push or open issues or pull requests.
|
from flask_sqlalchemy import SQLAlchemy
|
|
from services.security import SecurityService
|
|
|
|
db_connection = SQLAlchemy()
|
|
db = db_connection.session
|
|
security_service = SecurityService() |