aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Mig/IService.cs
blob: 2f6eb99eeb4629170142e67f4370be09bee40613 (plain) (blame)
1
2
3
4
5
6
7
8
namespace Ryujinx.HLE.HOS.Services.Mig
{
    [Service("mig:usr")] // 4.0.0+
    class IService : IpcService
    {
        public IService(ServiceCtx context) { }
    }
}