yui/status.rs
1//! `yui status` — show drift across all mounts:
2//! - link-broken (target became a separate inode from source)
3//! - replaced (junction/symlink replaced by a regular file/dir)
4//! - rendered-drift (rendered file edited in-place, template not updated)
5//! - missing (target gone but source exists)
6
7use crate::Result;
8
9pub fn run() -> Result<()> {
10 todo!("status::run")
11}