2023-01-13 18:20:48 +08:00
|
|
|
package friend
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"errors"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func GetUserInfo(ctx context.Context, userID string) (interface{}, error) {
|
|
|
|
|
return nil, errors.New("TODO:GetUserInfo")
|
|
|
|
|
}
|
2023-01-16 15:53:40 +08:00
|
|
|
|
|
|
|
|
func GetUserInfoBatch(ctx context.Context, userIDs []string) (interface{}, error) {
|
|
|
|
|
return nil, errors.New("TODO:GetUserInfo")
|
|
|
|
|
}
|