diff options
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -5,6 +5,7 @@ extern crate autopilot; #[macro_use] extern crate combine; +extern crate getopts; extern crate libc; #[macro_use] @@ -13,8 +14,10 @@ extern crate stderrlog; extern crate xdg; mod cocoa_bridge; +mod config; mod parser; use parser::{Action, HeadphoneButton, MapAction, MapGroup, MapKind}; pub use cocoa_bridge::*; +pub use config::{Config, parse_args}; |
