This commit is contained in:
landaiqing
2024-07-31 13:35:43 +08:00
parent 57db496aa3
commit ff0fddd5c3
10 changed files with 341 additions and 0 deletions

12
service/index.go Normal file
View File

@@ -0,0 +1,12 @@
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",
})
}