mirror of
https://github.com/project-redbud/FunGame-Server.git
synced 2025-04-22 03:59:36 +08:00
14 lines
327 B
C#
14 lines
327 B
C#
using Milimoe.FunGame.Core.Api.Transmittal;
|
|
using Milimoe.FunGame.Core.Api.Utility;
|
|
|
|
namespace Milimoe.FunGame.Server.Services
|
|
{
|
|
public class TFA(SQLHelper SQLHelper) : TwoFactorAuthenticator(SQLHelper)
|
|
{
|
|
public override bool IsAvailable(string username)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|