(client, payload, content_type="application/json")
| 56 | |
| 57 | |
| 58 | def _post_gs(client, payload, content_type="application/json"): |
| 59 | return client.post( |
| 60 | "/api/update_ground_stations", |
| 61 | data=json.dumps(payload) if isinstance(payload, dict) else payload, |
| 62 | content_type=content_type, |
| 63 | ) |
| 64 | |
| 65 | |
| 66 | def _post_leo(client, payload, content_type="application/json"): |
no test coverage detected