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