(self, server_conf)
| 48 | OK_STATUS = 200 |
| 49 | |
| 50 | def __init__(self, server_conf): |
| 51 | self._http_client = HttpClient() |
| 52 | self._server_url = server_conf["URL"] |
| 53 | self._type_prefix = server_conf["TYPE_PREFIX"] |
| 54 | self._server_token = server_conf.get("TOKEN") |
| 55 | |
| 56 | @classmethod |
| 57 | def get_data_md5(cls, data): |
nothing calls this directly
no test coverage detected