mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-23 03:02:51 +01:00
14 lines
248 B
C#
14 lines
248 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebInterface.Services
|
|
{
|
|
public interface ITorCheckService
|
|
{
|
|
bool IsTorExit(IPAddress address);
|
|
}
|
|
}
|