//! `stowe init`: create the `.stowe/` that makes a folder a repo.
useanyhow::Result;usecrate::repo::Repo;pubfnrun()->Result<()>{let cwd =std::env::current_dir()?;Repo::init(&cwd)?;println!("initialized empty stowe repo in {}/.stowe",crate::paths::short(&cwd));Ok(())}