geekai/server/chat_handler.go

12 lines
204 B
Go

package server
import (
"fmt"
"github.com/gin-gonic/gin"
"net/http"
)
func (s *Server) Chat(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"code": 0, "message": fmt.Sprintf("HELLO, ChatGPT !!!")})
}