MeloNX/src/Ryujinx.HLE/HOS/Services/Account/Dauth/IService.cs
2023-04-27 23:51:14 +02:00

8 lines
No EOL
182 B
C#

namespace Ryujinx.HLE.HOS.Services.Account.Dauth
{
[Service("dauth:0")] // 5.0.0+
class IService : IpcService
{
public IService(ServiceCtx context) { }
}
}