Skip to content

Commit

Permalink
feature(cli): exposing subcommands
Browse files Browse the repository at this point in the history
  • Loading branch information
notdanilo committed Dec 16, 2024
1 parent 3dcbfc5 commit db702df
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/cli/src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,16 @@ pub mod verbosity;
pub use build::*;
pub use serve::*;
pub use target::*;
pub use translate::*;
pub use verbosity::*;
pub use init::*;
pub use clean::*;
pub use bundle::*;
pub use autoformat::*;
pub use check::*;
pub use run::*;
pub use doctor::*;
pub use config::*;

use crate::{error::Result, Error, StructuredOutput};
use anyhow::Context;
Expand Down

0 comments on commit db702df

Please sign in to comment.