masastack / MASA.Docs

Apache License 2.0
15 stars 24 forks source link

callerBuilder写错了 #216

Closed sunday866 closed 1 year ago

sunday866 commented 1 year ago

builder.Services.AddCaller(clientBuilder => { callerBuilder.UseDapr(client => client.AppId = "{Replace-With-Your-Dapr-AppID}"); });

应该为 builder.Services.AddCaller(callerBuilder=> { callerBuilder.UseDapr(client => client.AppId = "{Replace-With-Your-Dapr-AppID}"); });

zhenlei520 commented 1 year ago

是的,这里写错了,方便的话能否提个pr 🙏🙏