herolib_rust/rfs-client/src/lib.rs
2025-06-24 16:10:39 +03:00

13 lines
352 B
Rust

// RFS Client - A client library for the Remote File System server
// This library wraps the OpenAPI-generated client to provide a more user-friendly interface
pub mod client;
pub mod error;
pub mod types;
pub use client::RfsClient;
pub use error::RfsError;
// Re-export types from the OpenAPI client that are commonly used
pub use openapi::models;