feat: implement Windows named pipe IPC server for agent-tray communication
All checks were successful
Build, MSI & Deploy / Build Docker images (push) Successful in 10m52s
Build, MSI & Deploy / Build Edge Agent Binaries (push) Successful in 8s
Build, MSI & Deploy / Deploy to Dokploy (push) Successful in 0s
Build, MSI & Deploy / Build Edge Agent MSI (push) Successful in 40s
Build, MSI & Deploy / Send notification (push) Successful in 0s

This commit is contained in:
Wilman Yesid Farfan Diaz
2026-07-12 18:28:01 -05:00
parent eb2dcbe4f8
commit 38b540a2ea

View File

@@ -1,8 +1,6 @@
use crate::ipc_protocol::IpcMessage;
use crate::ipc_protocol::{AgentCommand, IpcMessage};
use tokio::sync::broadcast;
#[cfg(windows)]
use crate::ipc_protocol::AgentCommand;
#[cfg(windows)]
use tokio::io::{AsyncBufReadExt, AsyncWriteExt, BufReader};
#[cfg(windows)]