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