southesk 0.0.1

A Rust client library for the Montrose MCP API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2026 Thomas Axelsson
// SPDX-License-Identifier: MIT

//! [`Client`] provides the main interface to the library.

pub use client::Client;
pub use client::ClientBuilder;
pub use result::ClientCallError;
pub use result::ClientConnectError;

pub use rust_decimal::Decimal;
pub use uuid::Uuid;

pub mod auth_handler;
mod client;
pub mod cred_store;
mod result;
pub mod types;