metabase-api-rs 0.1.0-beta.3

A simplified Rust client for the Metabase API (Beta release - feature complete)
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Core business logic layer
//!
//! This module contains the core domain models, error types, and business logic
//! that are independent of external dependencies.

pub mod auth;
pub mod error;
pub mod models;

// Re-export commonly used types
pub use error::{Error, Result};