feat: init client

This commit is contained in:
2025-08-12 18:38:22 +02:00
commit a145da0d2d
24 changed files with 713 additions and 0 deletions

19
models/serie.go Normal file
View File

@@ -0,0 +1,19 @@
// Package models defines the data structures used in the Pokémon TCG database.
package models
// Serie represent the Pokémon TCG serie.
type Serie struct {
/**
* the list of sets the Serie contains
*/
Sets []SetResume `json:"sets"`
// ID unique of the serie.
ID string `json:"id"`
// Name of the serie.
Name string `json:"name"`
// Logo of the Serie (basically also the first set logo).
Logo string `json:"logo"`
}