diff --git a/src/lib.rs b/src/lib.rs
index 083e1904..990c8762 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,4 @@
-use serde_json::{Value, json};
+use serde_json::{json, Value};
use std::io::{self};
use tokio::io::{AsyncReadExt, AsyncWriteExt};
use tokio::net::UnixStream;
@@ -6,20 +6,26 @@ use tracing::{debug, error};
pub const SOCKET_PATH: &str = "/tmp/mpvsocket";
-/// Sends an IPC command to the MPV socket and returns the parsed response data.
-pub async fn send_ipc_command(command: &str, args: &[Value]) -> io::Result