Files
Swarm/DysonNetwork.Gateway/Health/GatewayConstant.cs

25 lines
513 B
C#

namespace DysonNetwork.Gateway.Health;
public abstract class GatewayConstant
{
public static readonly string[] ServiceNames =
[
"ring",
"pass",
"drive",
"sphere",
"develop",
"insight",
"zone",
"messager"
];
// Core services stands with w/o these services the functional of entire app will broke.
public static readonly string[] CoreServiceNames =
[
"ring",
"pass",
"drive",
"sphere"
];
}