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