boot.rs 273 B

1234567891011121314
  1. use serde::Deserialize;
  2. #[derive(Deserialize, Clone)]
  3. pub struct BootConfigDef{
  4. pub hostname: String,
  5. }
  6. impl BootConfigDef {
  7. pub fn default() -> BootConfigDef {
  8. BootConfigDef{
  9. hostname: "ELIP4NG-Default-Hostname".to_string(),
  10. }
  11. }
  12. }