- Go API server with PostgreSQL + Redis - AI floor replacement (OpenRouter Gemini) - Product database (10 brands, 3539 products) - Recommendation engine, calculator, articles - Redis async queue + worker pool - Hot product caching, brand view tracking - JWT auth, favorites, projects - Docker deployment ready Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
285 B
Go
10 lines
285 B
Go
package model
|
|
|
|
// BrandInfo holds enriched brand data returned by /product-options.
|
|
type BrandInfo struct {
|
|
Name string `json:"name"`
|
|
LogoURL string `json:"logo_url"`
|
|
StyleCount int `json:"style_count"`
|
|
CollectionCount int `json:"collection_count"`
|
|
}
|