| 33 | |
| 34 | @dataclass |
| 35 | class StorageNameSpace: |
| 36 | namespace: str |
| 37 | global_config: dict |
| 38 | |
| 39 | async def index_done_callback(self): |
| 40 | """commit the storage operations after indexing""" |
| 41 | pass |
| 42 | |
| 43 | async def query_done_callback(self): |
| 44 | """commit the storage operations after querying""" |
| 45 | pass |
| 46 | |
| 47 | |
| 48 | @dataclass |
nothing calls this directly
no outgoing calls
no test coverage detected