package templates import ( "github.com/gin-gonic/gin" ) const MANUAL_QUERY string = `
` const AUTO_QUERY string = `
` func ToggleQueryType(c *gin.Context) { toggled := c.Query("toggle") if toggled == "on" { c.String(200, AUTO_QUERY) } else { c.String(200, MANUAL_QUERY) } }