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>
10 lines
337 B
Rust
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.
|