aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 8dc8e93f655844af932e160240859f05b672cd35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#![recursion_limit="128"]

extern crate autopilot;
// extern crate cocoa;

#[macro_use]
extern crate combine;
extern crate libc;

#[macro_use]
extern crate log;
extern crate stderrlog;
extern crate xdg;

mod cocoa_bridge;
mod parser;

use parser::{Action, HeadphoneButton, MapAction, MapGroup, MapKind};

pub use cocoa_bridge::*;