sal/net/src/lib.rs
Mahmoud-Emad 74217364fa
Some checks are pending
Rhai Tests / Run Rhai Tests (push) Waiting to run
feat: Add sal-net package to workspace
- Add new sal-net package to the workspace.
- Update MONOREPO_CONVERSION_PLAN.md to reflect the
  addition of the sal-net package and mark it as
  production-ready.
- Add Cargo.toml and README.md for the sal-net package.
2025-06-22 09:52:20 +03:00

10 lines
205 B
Rust

pub mod http;
pub mod rhai;
pub mod ssh;
pub mod tcp;
// Re-export main types for a cleaner API
pub use http::HttpConnector;
pub use ssh::{SshConnection, SshConnectionBuilder};
pub use tcp::TcpConnector;