#![warn(missing_docs)]
use nargo_types::Result;
use std::path::{Path, PathBuf};
pub struct ReleaseManager {
_root: PathBuf,
}
impl ReleaseManager {
pub fn new(root: &Path) -> Result<Self> {
Ok(Self { _root: root.to_path_buf() })
}
}
pub async fn publish(_root: &Path, _registry: Option<&str>) -> Result<()> {
println!("Publishing package...");
Ok(())
}
pub fn print_tree(_root: &Path) -> Result<()> {
println!("Dependency tree:");
Ok(())
}