1
0
Fork 0

Move fvm to packages in common

This commit is contained in:
Florian RICHER (MrDev023) 2021-07-24 20:21:32 +02:00
parent 3c390e5396
commit bb6d50d76c
7 changed files with 5 additions and 4 deletions

View file

@ -2,4 +2,4 @@ pub static TEMP_FOLDER: &str = "temp";
pub static INSTALL_FOLDER: &str = ".autoconfig";
pub mod utils;
pub mod fvm;
pub mod packages;

View file

@ -0,0 +1 @@
pub mod fvm;

View file

@ -25,7 +25,7 @@ pub fn start() {
let opt = Opt::from_args();
for tool in &opt.tools {
let result = match tool {
Tool::Fvm => super::common::fvm::install()
Tool::Fvm => super::common::packages::fvm::install()
};
if let Err(err) = result {

View file

@ -25,7 +25,7 @@ pub fn start() {
let opt = Opt::from_args();
for tool in &opt.tools {
let result = match tool {
Tool::Fvm => super::common::fvm::install()
Tool::Fvm => super::common::packages::fvm::install()
};
if let Err(err) = result {

View file

@ -25,7 +25,7 @@ pub fn start() {
let opt = Opt::from_args();
for tool in &opt.tools {
let result = match tool {
Tool::Fvm => super::common::fvm::install()
Tool::Fvm => super::common::packages::fvm::install()
};
if let Err(err) = result {