Total refactor of structure. Builds faster

This commit is contained in:
Luke
2020-04-21 22:51:53 +12:00
parent e21a6e3fb3
commit a38541ba4b
18 changed files with 479 additions and 1171 deletions

11
src/lib.rs Normal file
View File

@@ -0,0 +1,11 @@
mod aura;
/// Contains mostly only what is required for parsing CLI options
pub mod cli_options;
mod config;
/// The core module which allows writing to LEDs or polling the
/// laptop keyboard attached devices
pub mod core;
pub mod daemon;
mod error;
pub mod laptops;
mod virt_device;