mirror of
https://github.com/nushell/nushell.git
synced 2025-05-23 03:10:49 +02:00
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
8 lines
123 B
Rust
8 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;
|