mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-23 05:35:47 +00:00
18 lines
365 B
C#
18 lines
365 B
C#
namespace Ryujinx.Horizon.Prepo
|
|
{
|
|
class PrepoMain : IService
|
|
{
|
|
public static void Main(ServiceTable serviceTable)
|
|
{
|
|
PrepoIpcServer ipcServer = new();
|
|
|
|
ipcServer.Initialize();
|
|
|
|
serviceTable.SignalServiceReady();
|
|
|
|
ipcServer.ServiceRequests();
|
|
ipcServer.Shutdown();
|
|
}
|
|
}
|
|
}
|