technitium 0.4.0

Typed async Rust client for the Technitium DNS Server API
Documentation
mod common;

#[tokio::test]
#[ignore = "requires running Technitium server"]
async fn list_apps() {
    let client = common::authenticated_client().await;
    let _apps = client.list_apps().await.expect("list_apps should succeed");
    // May be empty on a fresh server
    // list_apps succeeded
}

#[tokio::test]
#[ignore = "requires running Technitium server"]
async fn list_app_store() {
    let client = common::authenticated_client().await;
    let _apps = client
        .list_app_store()
        .await
        .expect("list_app_store should succeed");
    // App store should have entries
    // list_app_store succeeded
}