nu-command 0.41.0

CLI for nushell
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "fetch")]
mod fetch;
#[cfg(feature = "fetch")]
pub use fetch::Command as Fetch;

#[cfg(feature = "post")]
mod post;
#[cfg(feature = "post")]
pub use post::Command as Post;

mod url_;
pub use url_::*;