yui-cli 0.7.3

Target-as-truth dotfiles manager: edit your live configs, source repo updates automatically via hardlink/junction/symlink.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! `yui status` — show drift across all mounts:
//!   - link-broken     (target became a separate inode from source)
//!   - replaced        (junction/symlink replaced by a regular file/dir)
//!   - rendered-drift  (rendered file edited in-place, template not updated)
//!   - missing         (target gone but source exists)

use crate::Result;

pub fn run() -> Result<()> {
    todo!("status::run")
}