1
0
Fork 0

Move git module

This commit is contained in:
Florian RICHER (MrDev023) 2021-08-11 19:29:13 +02:00
parent ce54aa3467
commit 8ea07a9796
3 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,8 @@
mod git;
use std::env::consts; use std::env::consts;
use super::utils::{configure, downloader, extractor, git, file_utils}; use super::utils::{configure, downloader, extractor, file_utils};
pub struct GitFileIdentifier { pub struct GitFileIdentifier {
pub os_name: String, pub os_name: String,

View file

@ -4,6 +4,5 @@ pub(self) static PACKAGE_FOLDER : &str = "packages";
pub mod downloader; pub mod downloader;
pub mod extractor; pub mod extractor;
pub mod git;
pub mod file_utils; pub mod file_utils;
pub mod configure; pub mod configure;