mirror of
https://github.com/bitwarden/server.git
synced 2026-02-07 01:16:22 +08:00
7 lines
183 B
C#
7 lines
183 B
C#
|
|
namespace Bit.Core.Services;
|
|||
|
|
|
|||
|
|
public interface IDnsResolverService
|
|||
|
|
{
|
|||
|
|
Task<bool> ResolveAsync(string domain, string txtRecord, CancellationToken cancellationToken = default);
|
|||
|
|
}
|