10 lines
221 B
Rust
10 lines
221 B
Rust
use llama_proxy_man::{config::AppConfig, logging, start_server};
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
logging::initialize_logger();
|
|
|
|
let config = AppConfig::default_from_pwd_yml();
|
|
|
|
start_server(config).await;
|
|
}
|