| 84 | |
| 85 | |
| 86 | class AbstractStore(ABC): |
| 87 | |
| 88 | @abstractmethod |
| 89 | async def store_content(self, content_item: Dict): |
| 90 | pass |
| 91 | |
| 92 | @abstractmethod |
| 93 | async def store_comment(self, comment_item: Dict): |
| 94 | pass |
| 95 | |
| 96 | # TODO support all platform |
| 97 | # only xhs is supported, so @abstractmethod is commented |
| 98 | @abstractmethod |
| 99 | async def store_creator(self, creator: Dict): |
| 100 | pass |
| 101 | |
| 102 | |
| 103 | class AbstractStoreImage(ABC): |
nothing calls this directly
no outgoing calls
no test coverage detected