File tree 3 files changed +0
-18
lines changed
3 files changed +0
-18
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ pub(crate) mod check;
5
5
pub ( crate ) mod clean;
6
6
pub ( crate ) mod config;
7
7
pub ( crate ) mod create;
8
- pub ( crate ) mod doctor;
9
8
pub ( crate ) mod init;
10
9
pub ( crate ) mod link;
11
10
pub ( crate ) mod run;
@@ -87,10 +86,6 @@ pub(crate) enum Commands {
87
86
#[ clap( name = "run" ) ]
88
87
Run ( run:: RunArgs ) ,
89
88
90
- /// Ensure all the tooling is installed and configured correctly
91
- #[ clap( name = "doctor" ) ]
92
- Doctor ( doctor:: Doctor ) ,
93
-
94
89
/// Dioxus config file controls.
95
90
#[ clap( subcommand) ]
96
91
#[ clap( name = "config" ) ]
@@ -111,7 +106,6 @@ impl Display for Commands {
111
106
Commands :: Check ( _) => write ! ( f, "check" ) ,
112
107
Commands :: Bundle ( _) => write ! ( f, "bundle" ) ,
113
108
Commands :: Run ( _) => write ! ( f, "run" ) ,
114
- Commands :: Doctor ( _) => write ! ( f, "doctor" ) ,
115
109
}
116
110
}
117
111
}
Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ async fn main() {
52
52
Commands :: Serve ( opts) => opts. serve ( ) . await ,
53
53
Commands :: Bundle ( opts) => opts. bundle ( ) . await ,
54
54
Commands :: Run ( opts) => opts. run ( ) . await ,
55
- Commands :: Doctor ( opts) => opts. run ( ) . await ,
56
55
} ;
57
56
58
57
// Provide a structured output for third party tools that can consume the output of the CLI
You can’t perform that action at this time.
0 commit comments