From e68641c0a773c4c79591545cfabb549c69ece45d Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Sat, 10 Feb 2024 08:40:13 +0400 Subject: Move CLI types to submodule --- src/ipc/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ipc') diff --git a/src/ipc/client.rs b/src/ipc/client.rs index c09ef84e..7754187a 100644 --- a/src/ipc/client.rs +++ b/src/ipc/client.rs @@ -6,7 +6,7 @@ use std::os::unix::net::UnixStream; use anyhow::{bail, Context}; use niri_ipc::{Mode, Output, Request, Response}; -use crate::Msg; +use crate::cli::Msg; pub fn handle_msg(msg: Msg, json: bool) -> anyhow::Result<()> { let socket_path = env::var_os(niri_ipc::SOCKET_PATH_ENV).with_context(|| { -- cgit