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