mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-23 14:15:24 +00:00
Stub out build command for generating rbxmx files
This commit is contained in:
13
server/src/commands/build.rs
Normal file
13
server/src/commands/build.rs
Normal 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);
|
||||
}
|
||||
@@ -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::*;
|
||||
Reference in New Issue
Block a user