mirror of
https://github.com/nushell/nushell.git
synced 2025-04-25 13:48:19 +02:00
47 lines
982 B
Rust
47 lines
982 B
Rust
use crate::commands::WholeStreamCommand;
|
|
use crate::prelude::*;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{ReturnSuccess, Signature, UntaggedValue};
|
|
|
|
pub struct Url;
|
|
|
|
#[async_trait]
|
|
impl WholeStreamCommand for Url {
|
|
fn name(&self) -> &str {
|
|
"url"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("url")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Apply url function"
|
|
}
|
|
|
|
async fn run(
|
|
&self,
|
|
_args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
let registry = registry.clone();
|
|
|
|
Ok(OutputStream::one(ReturnSuccess::value(
|
|
UntaggedValue::string(crate::commands::help::get_help(&Url, ®istry))
|
|
.into_value(Tag::unknown()),
|
|
)))
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::Url;
|
|
|
|
#[test]
|
|
fn examples_work_as_expected() {
|
|
use crate::examples::test as test_examples;
|
|
|
|
test_examples(Url {})
|
|
}
|
|
}
|