diff options
Diffstat (limited to 'src/main.lib/Services/ProxyService.cs')
-rw-r--r-- | src/main.lib/Services/ProxyService.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.lib/Services/ProxyService.cs b/src/main.lib/Services/ProxyService.cs index bf7e73d..49bf293 100644 --- a/src/main.lib/Services/ProxyService.cs +++ b/src/main.lib/Services/ProxyService.cs @@ -4,10 +4,10 @@ using System.Net.Http; namespace PKISharp.WACS.Services { - internal class ProxyService + public class ProxyService { private readonly ILogService _log; - private IWebProxy _proxy; + private IWebProxy? _proxy; private readonly ISettingsService _settings; public ProxyService(ILogService log, ISettingsService settings) |