nushell/crates/nu-command/src/network/mod.rs
Eli Flanagan e5bf56a7dd
port post (#4537)
This restores a basic version of the `post` command.
Some source types have been omitted from this first take.
I copied from `fetch` and from `post`@0.40.0.
Part of #4356
2022-02-18 13:53:10 -05:00

7 lines
123 B
Rust

mod fetch;
mod post;
mod url;
pub use self::url::*;
pub use fetch::SubCommand as Fetch;
pub use post::SubCommand as Post;