mirror of
https://github.com/d3vyce/fastapi-toolsets.git
synced 2026-03-02 01:10:47 +01:00
16 lines
325 B
Python
16 lines
325 B
Python
"""Generic async CRUD operations for SQLAlchemy models."""
|
|
|
|
from ..exceptions import NoSearchableFieldsError
|
|
from .factory import CrudFactory
|
|
from .search import (
|
|
SearchConfig,
|
|
get_searchable_fields,
|
|
)
|
|
|
|
__all__ = [
|
|
"CrudFactory",
|
|
"get_searchable_fields",
|
|
"NoSearchableFieldsError",
|
|
"SearchConfig",
|
|
]
|