41 lines
1.0 KiB
C#
41 lines
1.0 KiB
C#
|
|
namespace JiShe.CollectBus.Migration.Host
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// CollectBusMigrationHostConst
|
|||
|
|
/// </summary>
|
|||
|
|
public static class CollectBusMigrationHostConst
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 跨域策略名
|
|||
|
|
/// </summary>
|
|||
|
|
public const string DefaultCorsPolicyName = "Default";
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Cookies名称
|
|||
|
|
/// </summary>
|
|||
|
|
public const string DefaultCookieName = "JiShe.CollectBus.Migration.Host";
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// SwaggerUi 端点
|
|||
|
|
/// </summary>
|
|||
|
|
public const string SwaggerUiEndPoint = "/swagger";
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Hangfire 端点
|
|||
|
|
/// </summary>
|
|||
|
|
public const string HangfireDashboardEndPoint = "/hangfire";
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 健康检查 端点
|
|||
|
|
/// </summary>
|
|||
|
|
public const string HealthEndPoint = "/health";
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 健康检查 端点
|
|||
|
|
/// </summary>
|
|||
|
|
public const string HealthDashboardEndPoint = "/health-ui";
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|