mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
12 lines
216 B
Go
12 lines
216 B
Go
package check
|
|
|
|
import (
|
|
sdkws "Open_IM/pkg/proto/sdkws"
|
|
"context"
|
|
"errors"
|
|
)
|
|
|
|
func GetUsersInfo(ctx context.Context, args ...interface{}) ([]*sdkws.UserInfo, error) {
|
|
return nil, errors.New("TODO:GetUserInfo")
|
|
}
|