diff --git a/src/config.rs b/src/config.rs new file mode 100644 index 0000000..84309af --- /dev/null +++ b/src/config.rs @@ -0,0 +1,6 @@ +use serde::{Serialize, Deserialize}; + +#[derive(Serialize, Deserialize)] +pub struct DockerBuildConfig { + +} \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index 600c9c3..8a0ff5d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,6 +1,7 @@ #[macro_use] extern crate rust_util; +mod config; mod build_util; mod docker_util;