This commit is contained in:
Maxime Van Hees
2025-08-06 14:34:56 +02:00
parent 9f9149a950
commit 9c4fa1a78b
18 changed files with 2641 additions and 33 deletions

View File

@@ -1,4 +1,4 @@
use log::{debug, error, info, warn};
use tracing::{debug, error, info, warn};
use redis::AsyncCommands;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;

View File

@@ -3,7 +3,7 @@
//! This module provides actor process lifecycle management using Zinit as the process manager.
//! All functionality is implemented as methods on the Supervisor struct for a clean API.
use log::{debug, error, info, warn};
use tracing::{debug, error, info, warn};
use serde_json::json;
use std::collections::HashMap;
use std::path::PathBuf;