7 lines
125 B
Python
7 lines
125 B
Python
"""CRUD operations package."""
|
|
|
|
from app.crud.user import user
|
|
from app.crud import settings
|
|
|
|
__all__ = ["user", "settings"]
|