using Fantasy;
namespace NB.Authentication.Jwt;
public static class AuthenticationJwtHelper
{
///
/// 获取一个新的令牌
///
///
/// AccountId
/// 目标服务器的地址
/// 分配的Scene的Id
/// 账号所属地区
///
public static string GetToken(Scene scene, long aId, string address, uint sceneId, int region)
{
return scene.GetComponent().GetToken(aId, address, sceneId, region);
}
}