mirror of
https://github.com/nushell/nushell.git
synced 2025-07-01 07:00:37 +02:00
@ -31,7 +31,7 @@ impl Command for StorCreate {
|
||||
Some('c'),
|
||||
)
|
||||
.allow_variants_without_examples(true)
|
||||
.category(Category::Math)
|
||||
.category(Category::Database)
|
||||
}
|
||||
|
||||
fn usage(&self) -> &str {
|
||||
|
@ -31,7 +31,7 @@ impl Command for StorDelete {
|
||||
Some('w'),
|
||||
)
|
||||
.allow_variants_without_examples(true)
|
||||
.category(Category::Math)
|
||||
.category(Category::Database)
|
||||
}
|
||||
|
||||
fn usage(&self) -> &str {
|
||||
|
@ -25,7 +25,7 @@ impl Command for StorExport {
|
||||
Some('f'),
|
||||
)
|
||||
.allow_variants_without_examples(true)
|
||||
.category(Category::Math)
|
||||
.category(Category::Database)
|
||||
}
|
||||
|
||||
fn usage(&self) -> &str {
|
||||
|
@ -25,7 +25,7 @@ impl Command for StorImport {
|
||||
Some('f'),
|
||||
)
|
||||
.allow_variants_without_examples(true)
|
||||
.category(Category::Math)
|
||||
.category(Category::Database)
|
||||
}
|
||||
|
||||
fn usage(&self) -> &str {
|
||||
|
@ -31,7 +31,7 @@ impl Command for StorInsert {
|
||||
Some('d'),
|
||||
)
|
||||
.allow_variants_without_examples(true)
|
||||
.category(Category::Math)
|
||||
.category(Category::Database)
|
||||
}
|
||||
|
||||
fn usage(&self) -> &str {
|
||||
|
@ -20,7 +20,7 @@ impl Command for StorOpen {
|
||||
Type::Custom("sqlite-in-memory".into()),
|
||||
)])
|
||||
.allow_variants_without_examples(true)
|
||||
.category(Category::Math)
|
||||
.category(Category::Database)
|
||||
}
|
||||
|
||||
fn usage(&self) -> &str {
|
||||
|
@ -17,7 +17,7 @@ impl Command for StorReset {
|
||||
Signature::build("stor reset")
|
||||
.input_output_types(vec![(Type::Nothing, Type::Table(vec![]))])
|
||||
.allow_variants_without_examples(true)
|
||||
.category(Category::Math)
|
||||
.category(Category::Database)
|
||||
}
|
||||
|
||||
fn usage(&self) -> &str {
|
||||
|
@ -15,7 +15,7 @@ impl Command for Stor {
|
||||
|
||||
fn signature(&self) -> Signature {
|
||||
Signature::build("stor")
|
||||
.category(Category::Strings)
|
||||
.category(Category::Database)
|
||||
.input_output_types(vec![(Type::Nothing, Type::String)])
|
||||
}
|
||||
|
||||
|
@ -37,7 +37,7 @@ impl Command for StorUpdate {
|
||||
Some('w'),
|
||||
)
|
||||
.allow_variants_without_examples(true)
|
||||
.category(Category::Math)
|
||||
.category(Category::Database)
|
||||
}
|
||||
|
||||
fn usage(&self) -> &str {
|
||||
|
Reference in New Issue
Block a user