feat: add config

This commit is contained in:
2020-11-15 00:35:27 +08:00
parent 49b4e9e2a1
commit 500ae4f868
2 changed files with 7 additions and 0 deletions

6
src/config.rs Normal file
View File

@@ -0,0 +1,6 @@
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize)]
pub struct DockerBuildConfig {
}

View File

@@ -1,6 +1,7 @@
#[macro_use]
extern crate rust_util;
mod config;
mod build_util;
mod docker_util;