church_controller_rust/src/main.rs

18 lines
213 B
Rust
Raw Normal View History

use modules::socket_handler::Socket;
2021-12-10 15:16:05 -08:00
mod tests;
mod modules;
2021-12-17 12:39:11 -08:00
const SERVER_ADDRESS: &str = "localhost:5000";
2021-12-10 15:16:05 -08:00
fn main() {
let listener = Socket::make_listener(SERVER_ADDRESS);
2021-12-17 12:39:11 -08:00
2021-12-17 12:39:11 -08:00
drop(listener);
}