You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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)
|
|
}
|