Stub out build command for generating rbxmx files

This commit is contained in:
Lucien Greathouse
2018-11-27 10:38:44 -08:00
parent 767a59a481
commit 9db31c9191
3 changed files with 40 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
use std::{
path::PathBuf,
};
#[derive(Debug)]
pub struct BuildOptions {
pub fuzzy_project_path: PathBuf,
pub output_file: PathBuf,
}
pub fn build(options: &BuildOptions) {
println!("build {:#?}", options);
}

View File

@@ -1,5 +1,7 @@
mod serve;
mod init;
mod build;
pub use self::serve::*;
pub use self::init::*;
pub use self::init::*;
pub use self::build::*;