Skip to content

Commit

Permalink
style: clean code
Browse files Browse the repository at this point in the history
  • Loading branch information
fudiwei committed Jun 12, 2024
1 parent b7d94b0 commit b038c11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ internal class WechatApiSecurityApiInterceptor : HttpInterceptor

public WechatApiSecurityApiInterceptor(string baseUrl, string appId, string symmetricAlg, string symmetricNum, string symmetricEncodingKey, string asymmetricAlg, string asymmetricNum, string asymmetricPrivateKey, Func<string, bool>? customRequestPathMatcher)
{
_baseUrl = baseUrl;
_baseUrl = baseUrl.TrimEnd('/');
_appId = appId;
_symmetricAlg = symmetricAlg;
_symmetricNum = symmetricNum;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ internal class WechatOpenAIRequestEncryptionInterceptor : HttpInterceptor

public WechatOpenAIRequestEncryptionInterceptor(string baseUrl, string encodingAESKey, Func<string, bool>? customEncryptedRequestPathMatcher)
{
_baseUrl = baseUrl;
_baseUrl = baseUrl.TrimEnd('/');
_encodingAESKey = encodingAESKey;
_customEncryptedRequestPathMatcher = customEncryptedRequestPathMatcher;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
using System;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Flurl.Http;

namespace SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.SpecialApi.Interceptors
{
using System.Text;
using SKIT.FlurlHttpClient;
using SKIT.FlurlHttpClient.Internal;
using SKIT.FlurlHttpClient.Wechat.Work.ExtendedSDK.SpecialApi;
Expand Down

0 comments on commit b038c11

Please sign in to comment.