first commit

This commit is contained in:
Albert Espín 2025-03-02 11:58:37 +01:00
commit e45a8b77e0
3 changed files with 21 additions and 0 deletions

0
README.md Normal file
View File

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module git.espin.casa/albert/mercadona
go 1.24.0

View File

@ -0,0 +1,18 @@
package mercadona
type Category struct {
ID int `json:"id"`
Name string `json:"name"`
Order int `json:"order"`
Layout int `json:"layout"`
Published bool `json:"published"`
Categories []struct {
ID int `json:"id"`
Name string `json:"name"`
Order int `json:"order"`
Layout int `json:"layout"`
Published bool `json:"published"`
IsExtended bool `json:"is_extended"`
} `json:"categories"`
IsExtended bool `json:"is_extended"`
}