mirror of
https://github.com/nushell/nushell
synced 2025-01-04 09:18:57 +00:00
e5bf56a7dd
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
7 lines
123 B
Rust
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;
|