🔨 Add the Messager to the service grid

This commit is contained in:
2026-01-01 22:28:59 +08:00
parent ab37bbc7b0
commit 6212820d74
4 changed files with 124 additions and 93 deletions

View File

@@ -2,8 +2,24 @@ namespace DysonNetwork.Gateway.Health;
public abstract class GatewayConstant
{
public static readonly string[] ServiceNames = ["ring", "pass", "drive", "sphere", "develop", "insight", "zone"];
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"];
public static readonly string[] CoreServiceNames =
[
"ring",
"pass",
"drive",
"sphere"
];
}