Files
creyPY/creyPY/fastapi/db/__init__.py

9 lines
215 B
Python

try:
import sqlalchemy
from .async_session import *
from .helpers import *
from .session import *
except ImportError:
print("SQLAlchemy not installed. Database functionality will be disabled.")