fob_cli/commands/mod.rs
1//! Command implementations for the Joy CLI.
2//!
3//! This module contains the implementation of all CLI commands:
4//!
5//! - [`build`] - Bundle JavaScript/TypeScript files
6//! - [`dev`] - Development server with hot reload
7//! - [`init`] - Project scaffolding
8//! - [`check`] - Configuration validation
9//!
10//! Each command is implemented in its own module and provides an `execute`
11//! function that takes the parsed command arguments and returns a Result.
12
13pub mod build;
14pub mod check;
15pub mod dev;
16pub mod init;
17mod templates;
18pub mod utils;
19
20// Re-export execute functions for convenience
21pub use build::execute as build_execute;
22pub use check::execute as check_execute;
23pub use dev::execute as dev_execute;
24pub use init::execute as init_execute;