Skip to main content

superstac_core/
lib.rs

1//! Domain models, storage trait, and shared utilities for superstac.
2//!
3//! - [`models`]: `Catalog`, `Provider`, `Settings`, etc.
4//! - [`storages`]: the [`storages::factory::StorageBackend`] trait and the
5//!   in-memory implementation.
6//! - [`errors`]: typed error variants used across the workspace.
7
8pub mod storages;
9pub mod models;
10pub mod errors;
11pub mod utils;