mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-07-13 22:44:18 +00:00
18 lines
365 B
C#
18 lines
365 B
C#
namespace Ryujinx.Horizon.Srepo
|
|
{
|
|
class SrepoMain : IService
|
|
{
|
|
public static void Main(ServiceTable serviceTable)
|
|
{
|
|
SrepoIpcServer ipcServer = new();
|
|
|
|
ipcServer.Initialize();
|
|
|
|
serviceTable.SignalServiceReady();
|
|
|
|
ipcServer.ServiceRequests();
|
|
ipcServer.Shutdown();
|
|
}
|
|
}
|
|
}
|