(ctx *gin.Context)
| 170 | } |
| 171 | |
| 172 | func (i *imlMcpController) GlobalHandleSSE(ctx *gin.Context) { |
| 173 | apikey := ctx.Request.URL.Query().Get("apikey") |
| 174 | i.handleSSE(ctx, i.openSseServer, SessionInfo{ |
| 175 | Apikey: apikey, |
| 176 | }) |
| 177 | } |
| 178 | |
| 179 | func (i *imlMcpController) handleSSE(ctx *gin.Context, server http.Handler, sIn SessionInfo) { |
| 180 |