845b85e7a7
cargo fmt without --all fails with "Failed to find targets" in workspace repos. This was blocking every story's gates. Also ran cargo fmt --all to fix all existing formatting issues. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
577 B
Rust
17 lines
577 B
Rust
//! Filesystem I/O — module declarations and re-exports for file operations.
|
|
pub mod files;
|
|
pub mod paths;
|
|
pub mod preferences;
|
|
pub mod project;
|
|
pub mod scaffold;
|
|
|
|
pub use files::{
|
|
FileEntry, create_directory_absolute, list_directory, list_directory_absolute,
|
|
list_project_files, read_file, write_file,
|
|
};
|
|
pub use paths::{find_story_kit_root, get_home_directory, resolve_cli_path};
|
|
pub use preferences::{get_model_preference, set_model_preference};
|
|
pub use project::{
|
|
close_project, forget_known_project, get_current_project, get_known_projects, open_project,
|
|
};
|