// Package handler is the Vercel Go serverless function for POST /api/analyze. // All logic lives in the shared spread package; this is just the entrypoint // Vercel's Go runtime discovers. package handler import ( "net/http" "spread/internal/spread" ) func Handler(w http.ResponseWriter, r *http.Request) { spread.Handler(w, r) }