diff --git a/project/src/packager.rs b/project/src/packager.rs new file mode 100644 index 0000000..f0a84c4 --- /dev/null +++ b/project/src/packager.rs @@ -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(()) + } +}