(self, params_dict)
| 13 | |
| 14 | class HttpDestination(destination_base.Destination): |
| 15 | def __init__(self, params_dict): |
| 16 | self._communicator = _create_communicator(params_dict) |
| 17 | |
| 18 | def send(self, title, body, files=None): |
| 19 | content_type = None |
nothing calls this directly
no test coverage detected