Full Go backend + Vue 3 frontend, OpenAI-compatible API, multi-provider account pools, billing/admin, Docker one-command deploy with auto HTTPS. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
14 lines
233 B
Go
14 lines
233 B
Go
package handler
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
type HealthHandler struct{}
|
|
|
|
func NewHealthHandler() *HealthHandler {
|
|
return &HealthHandler{}
|
|
}
|
|
|
|
func (h *HealthHandler) Handle(c *gin.Context) {
|
|
c.JSON(200, gin.H{"ok": true})
|
|
}
|