Main project #1

Merged
raul merged 33 commits from testing into main 2024-06-14 07:49:34 +02:00
1 changed files with 12 additions and 0 deletions
Showing only changes of commit bb2a3adb83 - Show all commits

View File

@ -19,6 +19,18 @@ type root struct {
Temperatura struct { Temperatura struct {
Maxima string `json:"maxima"` Maxima string `json:"maxima"`
Minima string `json:"minima"` Minima string `json:"minima"`
Dato []struct {
Valor string `json:"#content"`
Hora string `json:"-hora"`
}
}
Sens_Termica struct {
Maxima string `json:"maxima"`
Minima string `json:"minima"`
Dato []struct {
Valor string `json:"#content"`
Hora string `json:"-hora"`
}
} }
} }
} }