package server import ( "net/http" "github.com/gin-gonic/gin" ) // The /api/v1/admin/* endpoints are reached through the gateway's Basic-Auth // reverse proxy (docs/ARCHITECTURE.md ยง12). The backend trusts the gateway to // have authenticated the operator; the admin surface itself (complaint review, // dictionary versions) lands in Stage 10. handleAdminPing is the proxy target that // proves the path end to end until then. func (s *Server) handleAdminPing(c *gin.Context) { c.JSON(http.StatusOK, gin.H{"status": "ok"}) }