1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Copyright 2026 Thomas Axelsson
// SPDX-License-Identifier: MIT
// docs.rs uses the nightly toolchain, which supports marking items with feature
// requirements
//! # southesk
//!
//! southesk is a library for creating clients for the [Montrose
//! MCP](https://www.montrose.io/mcp) API.
//!
//! [`Client`] provides the main interface to the library.
//!
//! # Quickstart
//! To use `southesk`, add it as a dependency along with an async runtime:
//!
//! ```bash
//! > cargo add southesk
//! > cargo add tokio -F rt-multi-thread
//! ```
//!
//! Then you can create a client and make API calls:
//!
//! ```no_run
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! let montrose = southesk::ClientBuilder::new("My Montrose Client")
//! .build()
//! .await?;
//! let montrose = montrose.connect().await?;
//!
//! let accounts = montrose.get_user_accounts().await?;
//! dbg!(&accounts);
//!
//! montrose.disconnect().await;
//!
//! Ok(())
//! }
//! ```
pub use ;
// Re-export dependencies that are part of the public interface
pub use reqwest;
pub use Url;
pub use rust_decimal;
pub use Decimal;
pub use uuid;
pub use Uuid;