voting largely re-added. Votesapi will instantly send grpc requests to the bot in order to award the user instantly

vote and timely now a better breakdown of what affects rewards
This commit is contained in:
Toastie 2025-03-26 12:07:52 +13:00
parent 9fe75d930f
commit b1d28296f0
Signed by: toastie_t0ast
GPG key ID: 0861BE54AD481DC7
9 changed files with 113 additions and 71 deletions
src/EllieBot.VotesApi

View file

@ -25,8 +25,7 @@ namespace EllieBot.VotesApi
services.AddGrpcClient<VoteService.VoteServiceClient>(options =>
{
var grpcServiceUrl = Configuration["GrpcServiceUrl"]!;
options.Address = new Uri(grpcServiceUrl);
options.Address = new Uri("http://127.0.0.1:59384");
})
.ConfigureChannel((sp, c) =>
{