Skip to content

Commit

Permalink
fix: use IServiceProvider to replace ServiceProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
nidbCN committed Jan 11, 2025
1 parent 6f8ef3d commit f3a43d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AliCdnSSLWorker/Services/CertService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace AliCdnSSLWorker.Services;
public class CertService(
ILogger<CertService> logger,
IOptions<CertConfig> options,
ServiceProvider serviceProvider)
IServiceProvider serviceProvider)
{
private readonly Dictionary<DomainInfo, CertInfo> _normalCertDict = [];
private readonly IList<CertInfo> _wildcardCertList = [];
Expand Down

0 comments on commit f3a43d7

Please sign in to comment.