Created Packager Base

This commit is contained in:
Maddox Werts 2025-04-18 18:31:30 -04:00
parent 2555c31e92
commit 803e59e21f

25
project/src/packager.rs Normal file
View file

@ -0,0 +1,25 @@
// Libraries
use std::io::Result;
// Structures
pub struct Packager {
directory: String,
file_out: String,
}
// Implementations
impl Packager {
// Constructors
pub fn new(directory: String, file_out: String) -> Self {
Self {
directory,
file_out,
}
}
// Functions
pub fn start(&self) -> Result<()> {
// Ok!!
Ok(())
}
}