6 lines
161 B
C#
6 lines
161 B
C#
|
services
|
||
|
.AddGrpcClient<User.UserServiceClient>(o =>
|
||
|
{
|
||
|
o.Address = new Uri("https://localhost:5001");
|
||
|
})
|
||
|
.EnableCallContextPropagation();
|