use crate::prelude::*; use chrono::{DateTime, Local}; use nu_errors::ShellError; use crate::commands::date::utils::date_to_value; use crate::commands::WholeStreamCommand; use nu_protocol::Signature; pub struct Date; #[async_trait] impl WholeStreamCommand for Date { fn name(&self) -> &str { "date now" } fn signature(&self) -> Signature { Signature::build("date now") } fn usage(&self) -> &str { "return the current date." } async fn run( &self, args: CommandArgs, registry: &CommandRegistry, ) -> Result { now(args, registry).await } } pub async fn now( args: CommandArgs, registry: &CommandRegistry, ) -> Result { let registry = registry.clone(); let args = args.evaluate_once(®istry).await?; let tag = args.call_info.name_tag.clone(); let no_fmt = "".to_string(); let value = { let local: DateTime = Local::now(); date_to_value(local, tag, no_fmt) }; Ok(OutputStream::one(value)) } #[cfg(test)] mod tests { use super::Date; use super::ShellError; #[test] fn examples_work_as_expected() -> Result<(), ShellError> { use crate::examples::test as test_examples; Ok(test_examples(Date {})?) } }