We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a026b45 commit c913995Copy full SHA for c913995
src/dfx/src/commands/language_service.rs
src/dfx/src/commands/mod.rs
@@ -20,7 +20,6 @@ mod generate;
20
mod identity;
21
mod info;
22
mod killall;
23
-mod language_service;
24
mod ledger;
25
mod new;
26
mod ping;
@@ -53,8 +52,6 @@ pub enum DfxCommand {
53
52
Identity(identity::IdentityOpts),
54
Info(info::InfoOpts),
55
Killall(killall::KillallOpts),
56
- #[command(name = "_language-service")]
57
- LanguageServices(language_service::LanguageServiceOpts),
58
Ledger(ledger::LedgerOpts),
59
New(new::NewOpts),
60
Ping(ping::PingOpts),
@@ -90,7 +87,6 @@ pub fn exec(env: &dyn Environment, cmd: DfxCommand) -> DfxResult {
90
87
DfxCommand::Identity(v) => identity::exec(env, v),
91
88
DfxCommand::Info(v) => info::exec(env, v),
92
89
DfxCommand::Killall(v) => killall::exec(env, v),
93
- DfxCommand::LanguageServices(v) => language_service::exec(env, v),
94
DfxCommand::Ledger(v) => ledger::exec(env, v),
95
DfxCommand::New(v) => new::exec(env, v),
96
DfxCommand::Ping(v) => ping::exec(env, v),
0 commit comments