edc-connector-client 0.3.8

A Rust client for EDC
Documentation
1
2
3
4
5
6
7
8
9
10
11
use common::setup_provider_client;

mod common;

#[tokio::test]
async fn should_fetch_dataplanes() {
    let client = setup_provider_client();

    let response = client.data_planes().list().await.unwrap();
    assert!(!response.is_empty());
}