(
default_config: &str,
config_file: Option<&str>,
)
| 17 | } |
| 18 | |
| 19 | pub fn load_config_figment_with_default( |
| 20 | default_config: &str, |
| 21 | config_file: Option<&str>, |
| 22 | ) -> Figment { |
| 23 | load_config("dstack", default_config, config_file, true) |
| 24 | } |
| 25 | |
| 26 | #[derive(Debug, Clone, Copy, Deserialize)] |
| 27 | pub struct BindAddr { |
no test coverage detected