Feature: Google OAuth2

This commit is contained in:
Kamigen
2024-04-22 16:43:20 -04:00
parent e3d570722e
commit 5f92998663
4 changed files with 71 additions and 20 deletions

View File

@@ -1,4 +1,5 @@
using Hutopy.Application;
using Hutopy.Application.Common.Interfaces;
using Hutopy.Domain.Interfaces;
using Hutopy.Infrastructure;
using Hutopy.Infrastructure.Data;
@@ -48,6 +49,7 @@ builder.Services.AddInfrastructureServices(builder.Configuration);
builder.Services.AddWebServices();
builder.Services.AddScoped<IUserService, UserService>();
builder.Services.AddScoped<IGoogleService, GoogleService>();
var app = builder.Build();