blob: 9c9ee3be2e7b5b2ec669a60387d237cc0ab887b3 (
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) { }
}
}
|