package handler import ( "github.com/gin-gonic/gin" ) func (h *SmokeHandler) GetAINextSmokeTime(c *gin.Context) { q := c.Request.URL.Query() q.Set("mode", "ai") c.Request.URL.RawQuery = q.Encode() h.GetNextSmokeTime(c) }