package controller import ( "github.com/gin-gonic/gin" "time" ) func AddHardware(c *gin.Context) { resp := RespBase{"unkown error",-231,nil} defer func() { c.JSON(200,resp) }() resp.Data = docTypes resp.Msg = "OK" resp.Status = 0 }