(config_file: Option<&str>)
| 13 | pub const DEFAULT_CONFIG: &str = include_str!("../dstack.toml"); |
| 14 | |
| 15 | pub fn load_config_figment(config_file: Option<&str>) -> Figment { |
| 16 | load_config_figment_with_default(DEFAULT_CONFIG, config_file) |
| 17 | } |
| 18 | |
| 19 | pub fn load_config_figment_with_default( |
| 20 | default_config: &str, |
no test coverage detected