9 lines
201 B
Rust
9 lines
201 B
Rust
use backend::{axum_app, build_runtime, init_logger, server_main};
|
|
|
|
fn main() {
|
|
init_logger();
|
|
let runtime = build_runtime();
|
|
let app = axum_app();
|
|
runtime.block_on(server_main(app));
|
|
}
|