bpm_core 0.1.0

Cross-platform software helping to verify, prove and secure package compilation, building, fetching, and deployment. Core package.
Documentation
1
2
3
4
5
6
7
8
/**
 * Represents application's configuration
 */
#[serde_with::skip_serializing_none]
#[derive(serde::Serialize, serde::Deserialize)]
pub struct CoreConfig {
    pub proxy: Option<String>,
}