| /* | |
| * | |
| * | |
| * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | |
| * | |
| * The version of the OpenAPI document: | |
| * | |
| * Generated by: https://openapi-generator.tech | |
| */ | |
| use crate::models; | |
| use serde::{Deserialize, Serialize}; | |
| pub struct AppConfig { | |
| pub data: Option<Box<models::DataConfig>>, | |
| pub http: Option<Box<models::HttpConfig>>, | |
| pub pipeline: Option<Box<models::PipelineConfig>>, | |
| pub providers: Option<Vec<models::ProviderConfig>>, | |
| } | |
| impl AppConfig { | |
| pub fn new() -> AppConfig { | |
| AppConfig { | |
| data: None, | |
| http: None, | |
| pipeline: None, | |
| providers: None, | |
| } | |
| } | |
| } | |