rust_voice_chat_room/client/src/lib.rs

9 lines
114 B
Rust
Raw Normal View History

pub mod gui;
pub mod stream;
pub mod voice;
#[derive(Debug)]
struct ClientConfig {
server_address: String,
}