feature: Bootstrapper secure server discovery
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace Disco.Services.Interop.DNS
|
||||
{
|
||||
public class TxtDnsRecord : DnsRecord
|
||||
{
|
||||
public TxtDnsRecord(string name, TimeSpan timeToLive, string text)
|
||||
: base(name, DnsRecordType.Txt, timeToLive, text)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user