//! # Removal of a manifest
//!//! This module contains the code for the removal of a manifest and is directly used by the the remove command.
usecamino::Utf8PathBuf;usecolor_eyre::Result;useepisko_lib::{files::File,metadata::Metadata};pubfnremove_manifest(file:&Utf8PathBuf)->Result<()>{Ok(Metadata::remove_file(file.as_std_path())?)}