mirror of
https://github.com/nushell/nushell.git
synced 2025-04-10 14:08:40 +02:00
Fmt
This commit is contained in:
parent
f57f7b2def
commit
3f8f3ecf9a
@ -14,8 +14,7 @@ impl Command for Use {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn signature(&self) -> nu_protocol::Signature {
|
fn signature(&self) -> nu_protocol::Signature {
|
||||||
Signature::build("use")
|
Signature::build("use").required("module_name", SyntaxShape::String, "module name")
|
||||||
.required("module_name", SyntaxShape::String, "module name")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn run(
|
fn run(
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
use std::ops::{Index, IndexMut};
|
use std::ops::{Index, IndexMut};
|
||||||
|
|
||||||
use crate::{Signature, DeclId};
|
use crate::{DeclId, Signature};
|
||||||
|
|
||||||
use super::Statement;
|
use super::Statement;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user