41 lines
1001 B
C#
41 lines
1001 B
C#
namespace JiShe.CollectBus.Host
|
|
{
|
|
/// <summary>
|
|
/// CollectBusHostConst
|
|
/// </summary>
|
|
public static class CollectBusHostConst
|
|
{
|
|
/// <summary>
|
|
/// 跨域策略名
|
|
/// </summary>
|
|
public const string DefaultCorsPolicyName = "Default";
|
|
|
|
/// <summary>
|
|
/// Cookies名称
|
|
/// </summary>
|
|
public const string DefaultCookieName = "JiShe.CollectBus.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";
|
|
|
|
|
|
}
|
|
}
|