#[macro_use]
extern crate lazy_static;
use std::path::Path;
pub mod build_project;
pub mod distributed_platform;
pub mod extract_function;
pub mod kubernetes;
pub mod local_queue;
pub mod utils;
pub use serde_json;
pub use uuid;
lazy_static! {
pub static ref CACHE_PATH: &'static Path = Path::new(".turbolift");
}
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}