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

16
models/card_resume.go Normal file
View File

@@ -0,0 +1,16 @@
package models
// CardResume contains basic informations about a specific card.
type CardResume struct {
// ID unique card ID based on the set ID and the cards ID within the set.
ID string `json:"id"`
// LocalID indexing this card within its set, usually just its number.
LocalID string `json:"localId"`
// Name of the card
Name string `json:"name"`
// Image url of the card without the extension and quality.
Image string `json:"image"`
}