1
2
3
4
5
6
7
8
use serde::Deserialize;

#[derive(Deserialize, Debug)]
pub struct CargoLifterConfig {
    pub backend: crate::config::BackendType,
    pub web: crate::config::WebServiceConfig,
    pub storage: crate::config::StorageType,
}