Add OSDK command line interface

This commit is contained in:
Jianfeng Jiang
2024-02-18 09:42:31 +00:00
committed by Tate, Hongliang Tian
parent f2f991b239
commit 3b3d088767
34 changed files with 2615 additions and 46 deletions

12
osdk/src/commands/mod.rs Normal file
View File

@ -0,0 +1,12 @@
// SPDX-License-Identifier: MPL-2.0
//! This module contains subcommands of cargo-osdk.
mod check;
mod clippy;
mod new;
mod utils;
pub use self::check::execute_check_command;
pub use self::clippy::execute_clippy_command;
pub use self::new::execute_new_command;