40 lines
702 B
Go
40 lines
702 B
Go
package api
|
|
|
|
import (
|
|
"Gwen/http/response"
|
|
"github.com/gin-gonic/gin"
|
|
"net/http"
|
|
)
|
|
|
|
type Index struct {
|
|
}
|
|
|
|
// Index 首页
|
|
// @Tags 首页
|
|
// @Summary 首页
|
|
// @Description 首页
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Success 200 {object} response.Response
|
|
// @Failure 500 {object} response.Response
|
|
// @Router / [get]
|
|
func (i *Index) Index(c *gin.Context) {
|
|
response.Success(
|
|
c,
|
|
"Hello Gwen",
|
|
)
|
|
}
|
|
|
|
// Heartbeat 心跳
|
|
// @Tags 首页
|
|
// @Summary 心跳
|
|
// @Description 心跳
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Success 200 {object} nil
|
|
// @Failure 500 {object} response.Response
|
|
// @Router /heartbeat [post]
|
|
func (i *Index) Heartbeat(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{})
|
|
}
|