apifreaks 1.0.1

Rust SDK for APIFreaks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! API client and types for the APIFreaks APIs
//!
//! This module contains all the API definitions including request/response types
//! and client implementations for interacting with the API.
//!
//! ## Modules
//!
//! - [`resources`] - Service clients and endpoints
//! - [`types`] - Request, response, and model types

pub mod resources;
pub mod types;

pub use resources::ApiFreaks;
pub use types::*;