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