fotos_lib/ipc/client.rs
1/// IPC client — used by the MCP server to communicate with the main app.
2///
3/// Connects to the Unix socket (Linux) or named pipe (Windows) that
4/// the main app's IPC server listens on.
5use anyhow::Result;
6
7pub async fn connect_to_app() -> Result<()> {
8 // TODO: connect to the main app's IPC socket/pipe
9 anyhow::bail!("IPC client not yet implemented")
10}