(self, token, topic='')
| 2 | import requests # 导入依赖库 |
| 3 | class PlusPushHandler: |
| 4 | def __init__(self, token, topic=''): |
| 5 | self.token = token |
| 6 | self.topic = topic |
| 7 | |
| 8 | def ftmsgsend(self, msgurl): |
| 9 |
nothing calls this directly
no outgoing calls
no test coverage detected