This commit is contained in:
苏尹岚
2020-12-30 14:10:26 +08:00
parent cce7839324
commit a2396a4876

View File

@@ -324,6 +324,6 @@ func (c *EventController) UploadAudio() {
func (c *EventController) GetUserStatistics() { func (c *EventController) GetUserStatistics() {
c.callGetUserStatistics(func(params *tEventGetUserStatisticsParams) (retVal interface{}, errCode string, err error) { c.callGetUserStatistics(func(params *tEventGetUserStatisticsParams) (retVal interface{}, errCode string, err error) {
retVal, err = event.GetUserStatistics(params.Ctx) retVal, err = event.GetUserStatistics(params.Ctx)
return result, "", err return retVal, "", err
}) })
} }