blob: 1f57edb562ee36de451908e263a9787fa879e4fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#![recursion_limit="128"]
extern crate autopilot;
// extern crate cocoa;
#[macro_use]
extern crate combine;
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate log;
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};
|