Files
Swarm/DysonNetwork.Gateway/Health/GatewayConstant.cs
2025-12-24 22:09:03 +08:00

9 lines
389 B
C#

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