mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-24 07:27:10 +02:00
8 lines
262 B
C#
8 lines
262 B
C#
namespace Ryujinx.HLE.HOS.Services.Account.Acc
|
|
{
|
|
[Service("acc:aa", AccountServiceFlag.BaasAccessTokenAccessor)] // Max Sessions: 4
|
|
class IBaasAccessTokenAccessor : IpcService
|
|
{
|
|
public IBaasAccessTokenAccessor(ServiceCtx context) { }
|
|
}
|
|
}
|