withchao 176c65ebaf 1
2023-01-13 18:20:48 +08:00

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