ДЗ smart-house-web завершено

This commit is contained in:
28 changed files with 1671 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
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));
}