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") }