Skip to main content

dnsimple/
lib.rs

1//! Rust DNSimple API client
2//!
3//! This crate contains the Rust client for the DNSimple API.
4//! You will find all the needed endpoints of the v2 of the
5//! DNSimple API covered in here.
6//!
7//! # Layout
8//! At the top level we have the `Client` struct which will be
9//! your entrypoint to the rest of the API as documented in each
10//! of the endpoints.
11#![deny(clippy::expect_used, clippy::panic, clippy::unwrap_used)]
12pub mod dnsimple;
13pub mod errors;