Skip to content

Commit

Permalink
Added the Configuration property to the IConsulClient interface. (G-R…
Browse files Browse the repository at this point in the history
  • Loading branch information
firerain-fd committed Jan 26, 2024
1 parent cb2a249 commit 43fcd23
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Consul/Interfaces/IConsulClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
using System;
using System.Threading;
using System.Threading.Tasks;
using Consul.Interfaces;

namespace Consul
{
Expand All @@ -40,6 +41,7 @@ public interface IConsulClient : IDisposable
Task<IDistributedSemaphore> AcquireSemaphore(string prefix, int limit, CancellationToken ct = default);
IAgentEndpoint Agent { get; }
ICatalogEndpoint Catalog { get; }
IConfigurationEndpoint Configuration { get; }
IDistributedLock CreateLock(LockOptions opts);
IDistributedLock CreateLock(string key);
IEventEndpoint Event { get; }
Expand Down

0 comments on commit 43fcd23

Please sign in to comment.