This commit is contained in:
Tomáš Dvořák
2025-10-16 13:32:05 +02:00
commit 12cba639b9
663 changed files with 168914 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package models
// ClubSearchResult represents a club search result from FACR API
type ClubSearchResult struct {
ID string `json:"id"`
Name string `json:"name"`
Type string `json:"type"`
LogoURL string `json:"logo_url"`
Category string `json:"category"`
}