From 4ffa94357a031ef9ca0565a5c073d95d837a3e41 Mon Sep 17 00:00:00 2001 From: Jonas Frei Date: Mon, 29 May 2017 17:55:06 +0200 Subject: [PATCH] Small correction in Readme example code --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a46a99c..af5072b 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,8 @@ $ mpv --input-ipc-server=/tmp/mpvsocket --idle Here is a small code example which connects to the socket /tmp/mpvsocket and toggles playback. ``` +extern crate mpvipc; + use mpvipc::*; use std::sync::mpsc::channel;