1
2
3
4
5
6
7
8
9
//! Comamnd Upgrade

use crate::result::Result;
use std::path::PathBuf;

/// Exec command `upgrade`
pub fn exec(_path: PathBuf, _tag: String) -> Result<()> {
    Ok(())
}