(client, payload, content_type="application/json")
| 64 | |
| 65 | |
| 66 | def _post_leo(client, payload, content_type="application/json"): |
| 67 | return client.post( |
| 68 | "/api/update_leo_satellites", |
| 69 | data=json.dumps(payload) if isinstance(payload, dict) else payload, |
| 70 | content_type=content_type, |
| 71 | ) |
| 72 | |
| 73 | |
| 74 | def _post_req(client, payload, content_type="application/json"): |
no test coverage detected