7 lines
163 B
C#
7 lines
163 B
C#
namespace Knot.Contracts.Klipy.Abstractions;
|
|
|
|
public interface IKlipyClient
|
|
{
|
|
Task<bool> TestConnectionAsync(CancellationToken cancellationToken = default);
|
|
}
|