nushell/crates/nu-command/src/network/mod.rs

8 lines
123 B
Rust
Raw Normal View History

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