workspacer_cli/organize.rs
1// ---------------- [ File: workspacer-cli/src/organize.rs ]
2crate::ix!();
3
4/// Organize the workspace or a single crate
5#[derive(Debug, StructOpt)]
6pub enum OrganizeSubcommand {
7 Crate {
8 #[structopt(long = "crate")]
9 crate_name: PathBuf,
10 },
11 Workspace {
12 #[structopt(long = "path")]
13 path: PathBuf,
14 },
15}
16
17impl OrganizeSubcommand {
18 pub async fn run(&self) -> Result<(),WorkspaceError> {
19 todo!("ws organize: We haven't figured out what we want to do here yet");
20 }
21}