imag/libimagrt/src/lib.rs

15 lines
248 B
Rust
Raw Normal View History

2016-01-10 14:04:06 +00:00
#[macro_use] extern crate log;
#[macro_use] extern crate itertools;
#[cfg(unix)] extern crate xdg_basedir;
extern crate clap;
extern crate config;
extern crate libimagstore;
extern crate libimagutil;
mod configuration;
mod logger;
mod runtime;
2016-01-10 14:04:06 +00:00