Files
foxhunt/crates/trading_engine/src/storage/mod.rs
jgrusewski 9c3d741a08 refactor: restructure repo — crates/, bin/, testing/ layout
Move 17 library crates into crates/, CLI binary into bin/fxt,
consolidate 10 test crates into testing/, split config crate
from deployment config files.

Root directory reduced from 38+ to ~17 directories.
All Cargo.toml paths and build.rs proto refs updated.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-25 11:56:00 +01:00

10 lines
337 B
Rust

//! Storage functionality has been moved to the dedicated `storage` crate.
//!
//! Use explicit imports from the `storage` crate:
//! ``rust
//! use storage::{S3Storage, LocalStorage, ModelCheckpointManager};
//! ``
// This module is deprecated and will be removed.
// All storage functionality is now in the dedicated `storage` crate.