Rust service refactor: friends & some other

This commit is contained in:
2026-03-10 13:27:12 +08:00
parent e38697faa9
commit 3437bc5746
17 changed files with 84 additions and 93 deletions

View File

@@ -1,6 +1,6 @@
use crate::{
init::{
lifecycle::{construct_user_session, handle_disasterous_failure, validate_server_health},
lifecycle::{construct_user_session, handle_disastrous_failure, validate_server_health},
tracing::init_logging,
},
services::{
@@ -28,7 +28,7 @@ pub async fn launch_app() {
init_modules();
if let Err(err) = validate_server_health().await {
handle_disasterous_failure(Some(err.to_string())).await;
handle_disastrous_failure(Some(err.to_string())).await;
return;
}