mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 15:44:25 +08:00
22 lines
781 B
C#
22 lines
781 B
C#
namespace LanMountainDesktop.Shared.IPC;
|
|
|
|
public static class IpcConstants
|
|
{
|
|
public const string DefaultPipeName = "LanMountainDesktop.IPC.v1.Server";
|
|
|
|
public const string ProtocolVersion = "external-ipc-public-api.v1";
|
|
|
|
public const string AirAppRuntimePipeName = "LanMountainDesktop.AirAppRuntime.v1";
|
|
|
|
[Obsolete("Use AirAppRuntimePipeName. The lifecycle service is now hosted by LanMountainDesktop.AirAppRuntime.")]
|
|
public const string AirAppLifecyclePipeName = AirAppRuntimePipeName;
|
|
|
|
public const string AirAppLifecycleProtocolVersion = "air-app-lifecycle.v1";
|
|
|
|
public static class Routes
|
|
{
|
|
public const string SessionGetInfo = "lanmountain.session.get-info";
|
|
public const string CatalogGet = "lanmountain.catalog.get";
|
|
}
|
|
}
|