mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2025-07-25 21:04:01 +00:00
14 lines
469 B
C#
14 lines
469 B
C#
using System.Net.Http;
|
|
using Microsoft.Extensions.Logging;
|
|
using Wabbajack.DTOs.Logins;
|
|
using Wabbajack.Services.OSIntegrated;
|
|
|
|
namespace Wabbajack.Networking.Browser.Verbs;
|
|
|
|
public class VectorPlexusLogin : AOAuthLoginVerb<VectorPlexusLoginState>
|
|
{
|
|
public VectorPlexusLogin(ILogger<LoverLabLogin> logger, EncryptedJsonTokenProvider<VectorPlexusLoginState> tokenProvider, HttpClient client) :
|
|
base(logger, "lovers-lab", tokenProvider, client)
|
|
{
|
|
}
|
|
} |