(self, **kwargs)
| 252 | """Xiaohongshu MongoDB storage implementation""" |
| 253 | |
| 254 | def __init__(self, **kwargs): |
| 255 | super().__init__(**kwargs) |
| 256 | self.mongo_store = MongoDBStoreBase(collection_prefix="xhs") |
| 257 | |
| 258 | async def store_content(self, content_item: Dict): |
| 259 | """ |
nothing calls this directly
no test coverage detected