♻️ Extract the Storage service to DysonNetwork.Drive microservice
This commit is contained in:
@ -4,17 +4,20 @@ using System.Security.Cryptography;
|
||||
using System.Text;
|
||||
using DysonNetwork.Common.Services;
|
||||
using Microsoft.IdentityModel.Tokens;
|
||||
using DysonNetwork.Pass.Data;
|
||||
using DysonNetwork.Sphere;
|
||||
|
||||
namespace DysonNetwork.Pass.Features.Auth.OpenId;
|
||||
|
||||
public class GoogleOidcService(
|
||||
IConfiguration configuration,
|
||||
IHttpClientFactory httpClientFactory,
|
||||
PassDatabase db,
|
||||
PassDatabase passDb,
|
||||
AppDatabase sphereDb,
|
||||
AuthService auth,
|
||||
ICacheService cache
|
||||
)
|
||||
: OidcService(configuration, httpClientFactory, db, auth, cache)
|
||||
: OidcService(configuration, httpClientFactory, passDb, sphereDb, auth, cache)
|
||||
{
|
||||
private readonly IHttpClientFactory _httpClientFactory = httpClientFactory;
|
||||
|
||||
|
Reference in New Issue
Block a user