9 lines
114 B
Rust
9 lines
114 B
Rust
|
pub mod gui;
|
||
|
pub mod stream;
|
||
|
pub mod voice;
|
||
|
|
||
|
#[derive(Debug)]
|
||
|
struct ClientConfig {
|
||
|
server_address: String,
|
||
|
}
|