DownToZero Client API
A base crate for the DownToZero Cloud API
Exposed functionality
The dtz-crate only exposes the dtz-config crate which covers the API client and authentication requirments.
All service specific functionality is exposed through features.
Features
- containers
- core
- identity
- full (contains all features at once)
- objectstore
- observability
- rss2mail
Examples
Retrieving the current Context.
[dependencies]
tokio = { version = "1", features = ["full] }
dtz = { version = "*", features = ["core"] }
use FromStr;
use Uuid;
async