refactor: change name from builder to installer

This commit is contained in:
Strix 2023-10-14 22:39:43 +02:00
parent 4ecc1eb1e8
commit 8cf2876ff0
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774
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;