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