blob: 797a7a9bd18ef91a3891364740d6d5e4e5aac547 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
namespace Ryujinx.HLE.HOS.Services.Ldn.Lp2p
{
[Service("lp2p:app")] // 9.0.0+
[Service("lp2p:sys")] // 9.0.0+
class IServiceCreator : IpcService
{
public IServiceCreator(ServiceCtx context) { }
}
}
|