API Pool Status pull-up

Co-Authored-By: brekotis <93345790+brekotis@users.noreply.github.com>
This commit is contained in:
Alexey 2026-03-04 01:41:11 +03:00
parent 068cf825b9
commit ead08981e7
No known key found for this signature in database
1 changed files with 2 additions and 0 deletions

View File

@ -1168,6 +1168,7 @@ async fn main() -> std::result::Result<(), Box<dyn std::error::Error>> {
if listen.port() != 0 {
let stats = stats.clone();
let ip_tracker_api = ip_tracker.clone();
let me_pool_api = me_pool.clone();
let config_rx_api = config_rx.clone();
let config_path_api = std::path::PathBuf::from(&config_path);
tokio::spawn(async move {
@ -1175,6 +1176,7 @@ async fn main() -> std::result::Result<(), Box<dyn std::error::Error>> {
listen,
stats,
ip_tracker_api,
me_pool_api,
config_rx_api,
config_path_api,
)