- 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>
12 lines
164 B
Go
12 lines
164 B
Go
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func handleHealthz(w http.ResponseWriter, r *http.Request) {
|
|
writeJSON(w, 200, map[string]string{
|
|
"status": "ok",
|
|
})
|
|
}
|