mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 22:44:29 +01:00
17 lines
298 B
C#
17 lines
298 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Tor
|
|
{
|
|
public class OnionEndpoint : DnsEndPoint
|
|
{
|
|
public OnionEndpoint(string host, int port): base(host, port)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|