| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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{})
- }
|