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