13 lines
177 B
Go
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",
|
|
})
|
|
}
|