Refactor HTTP client name constant usage
Replaced the old HttpClientName constant in Constants.cs with a new Http.ClientName in the ReC.Application.Common.Constants namespace. Updated all references and using directives accordingly to improve code organization and maintainability.
This commit is contained in:
@@ -1,6 +0,0 @@
|
||||
namespace ReC.Application.Common;
|
||||
|
||||
public static class Constants
|
||||
{
|
||||
public static readonly string HttpClientName = "HttpClient-" + Guid.NewGuid().ToString();
|
||||
}
|
||||
6
src/ReC.Application/Common/Constants/Http.cs
Normal file
6
src/ReC.Application/Common/Constants/Http.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace ReC.Application.Common.Constants;
|
||||
|
||||
public static class Http
|
||||
{
|
||||
public static readonly string ClientName = "HttpClient-" + Guid.NewGuid().ToString();
|
||||
}
|
||||
Reference in New Issue
Block a user