fabryk_client/
lib.rs

1//! # fabryk-client
2//!
3//! Rust client library for Fabryk knowledge fabric.
4//!
5//! This crate provides a high-level client for interacting with Fabryk:
6//! - Async client for Fabryk API
7//! - Query, store, and retrieve knowledge items
8//! - Partition and tag management
9//! - Authentication handling
10//! - Connection pooling and retry logic
11
12#![warn(missing_docs)]
13#![warn(clippy::all)]
14#![forbid(unsafe_code)]
15
16pub mod error;
17pub mod client;
18pub mod config;
19
20pub use error::{Error, Result};
21pub use client::FabrykClient;