14 lines
217 B
Rust
14 lines
217 B
Rust
mod app {
|
|
pub mod client;
|
|
pub mod command;
|
|
pub mod config;
|
|
pub mod connection;
|
|
pub mod protocol;
|
|
}
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
env_logger::init();
|
|
app::client::run_forever().await;
|
|
}
|