Files
ai_english/serve/api/handlers/hello_handler.go
2025-11-17 14:09:17 +08:00

16 lines
262 B
Go

// api/handlers/hello_handler.go
package handlers
import (
"net/http"
"github.com/gin-gonic/gin"
)
// HelloHandler 处理 /hello 请求
func HelloHandler(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{
"message": "Hello from a structured project!",
})
}