mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-27 20:30:40 +08:00
Refactor code
This commit is contained in:
parent
1b11cd571e
commit
324152e363
@ -184,7 +184,11 @@ func GetGroupAllMemberList(c *gin.Context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func ProtoToMap(pb proto.Message, idFix bool) map[string]interface{} {
|
func ProtoToMap(pb proto.Message, idFix bool) map[string]interface{} {
|
||||||
marshaler := jsonpb.Marshaler{}
|
marshaler := jsonpb.Marshaler{
|
||||||
|
OrigName: true,
|
||||||
|
EnumsAsInts: false,
|
||||||
|
EmitDefaults: true,
|
||||||
|
}
|
||||||
s, _ := marshaler.MarshalToString(pb)
|
s, _ := marshaler.MarshalToString(pb)
|
||||||
out := make(map[string]interface{})
|
out := make(map[string]interface{})
|
||||||
json.Unmarshal([]byte(s), &out)
|
json.Unmarshal([]byte(s), &out)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user