diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/cocoa_bridge.rs | 1 | ||||
| -rw-r--r-- | src/parser.rs | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/cocoa_bridge.rs b/src/cocoa_bridge.rs index 2f69a3a..54f7904 100644 --- a/src/cocoa_bridge.rs +++ b/src/cocoa_bridge.rs @@ -7,7 +7,6 @@ use std::slice; use libc::{c_char, size_t}; use {HeadphoneButton, MapGroup, MapKind}; -use parser; #[repr(C)] struct renameMeMapGroup { diff --git a/src/parser.rs b/src/parser.rs index 4a7fec8..1d9aa56 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -20,7 +20,7 @@ pub enum HeadphoneButton { Up, Down, } -pub type Trigger = Vec<HeadphoneButton>; +type Trigger = Vec<HeadphoneButton>; type Action = String; #[repr(C)] |
