aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Srepo/ISrepoService.cs
blob: 167dea677241048b8c24c31c1b2fc6062d338064 (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace Ryujinx.HLE.HOS.Services.Srepo
{
    [Service("srepo:a")] // 5.0.0+
    [Service("srepo:u")] // 5.0.0+
    class ISrepoService : IpcService
    {
        public ISrepoService(ServiceCtx context) { }
    }
}