namecheap 0.1.0

NameCheap SDK for interacting with their API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// utils
use namecheap::NameCheapClient;
use namecheap::utils::tracer::init_tracing;
use namecheap::domains_dns::set_hosts::HostRequest;

use dotenv::dotenv;
use std::env::var;
use serde_json::Value;
use tracing::info;

#[tokio::main]
async fn main() {

    // Example usage of the client
}