// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//! Cache builder types for constructing single and multi-tier caches.
//!
//! This module provides the builder pattern infrastructure for creating
//! caches with configurable storage, TTL, telemetry, and fallback tiers.
pub use CacheBuilder;
pub use FallbackBuilder;
pub use CacheTierBuilder;
pub use TransformBuilder;