Files
go-chat/service/index.go
landaiqing ff0fddd5c3 init
2024-07-31 13:35:43 +08:00

13 lines
177 B
Go

package service
import (
"github.com/gin-gonic/gin"
"net/http"
)
func GetIndex(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{
"message": "Welcome to Go WorkSpace",
})
}