mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-05-02 07:54:19 +08:00
15 lines
302 B
Go
15 lines
302 B
Go
package friend
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
)
|
|
|
|
func GetUserInfo(ctx context.Context, userID string) (interface{}, error) {
|
|
return nil, errors.New("TODO:GetUserInfo")
|
|
}
|
|
|
|
func GetUserInfoBatch(ctx context.Context, userIDs []string) (interface{}, error) {
|
|
return nil, errors.New("TODO:GetUserInfo")
|
|
}
|