mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-11 23:47:32 +08:00
12 lines
240 B
Go
12 lines
240 B
Go
package msggateway
|
|
|
|
import (
|
|
"github.com/openimsdk/tools/apiresp"
|
|
"github.com/openimsdk/tools/log"
|
|
)
|
|
|
|
func httpError(ctx *UserConnContext, err error) {
|
|
log.ZWarn(ctx, "ws connection error", err)
|
|
apiresp.HttpError(ctx.RespWriter, err)
|
|
}
|