nu-command 0.106.0

Nushell's built-in commands
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod client;
mod delete;
mod get;
mod head;
mod http_;
mod options;
mod patch;
mod post;
mod put;

pub use delete::HttpDelete;
pub use get::HttpGet;
pub use head::HttpHead;
pub use http_::Http;
pub use options::HttpOptions;
pub use patch::HttpPatch;
pub use post::HttpPost;
pub use put::HttpPut;