Files
unshell-nodes-rs/payload/src/main.rs
T

22 lines
383 B
Rust
Raw Normal View History

2025-06-04 22:52:20 -06:00
// #[allow(unsafe_op_in_unsafe_fn)]
// mod execute;
use std::error::Error;
2025-06-05 16:02:28 -06:00
use std::{
sync::{Arc, Mutex},
thread,
time::Duration,
};
use unshell_rs_lib::{
networkers::{ClientTrait, Connection, TCPClient, TCPConnection},
packets::Packet,
2025-06-04 22:52:20 -06:00
};
fn main() -> Result<(), Box<dyn Error>> {
run_client::<TCPConnection, TCPClient>("127.0.0.1:3000")?;
Ok(())
}