Add fmt-project subcommand

This commit is contained in:
Lucien Greathouse
2021-05-20 15:41:08 -04:00
parent 5a0a8f5077
commit df1aced95d
4 changed files with 35 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
mod build;
mod doc;
mod fmt_project;
mod init;
mod plugin;
mod serve;
@@ -22,6 +23,7 @@ use thiserror::Error;
pub use self::build::*;
pub use self::doc::*;
pub use self::fmt_project::FmtProjectCommand;
pub use self::init::*;
pub use self::plugin::*;
pub use self::serve::*;
@@ -112,6 +114,8 @@ pub enum Subcommand {
/// Generates a place or model file out of the project and uploads it to Roblox.
Upload(UploadCommand),
FmtProject(FmtProjectCommand),
/// Open Rojo's documentation in your browser.
Doc,