refactor: change name from builder to installer

This commit is contained in:
Didier Slof 2023-07-17 20:40:01 +02:00
parent c3db07dc64
commit 7a56816472
Signed by: didier
GPG key ID: 01E71F18AA4398E5
7 changed files with 70 additions and 41 deletions

View file

@ -3,9 +3,9 @@ use log::{debug, trace};
use errors::{BinError, BuildError, InstallError};
use manifest::Manifest;
use pkgfile::PKGFile;
use crate::tmp::TempDir;
use crate::tmpfs::TempDir;
mod errors;
pub mod errors;
#[derive(Debug)]
pub enum InstallType {

View file

@ -1,3 +1,3 @@
pub mod identifier;
pub mod builder;
pub mod installer;
pub mod fetch;