Files
mROA/mROA/Abstract/IUntrustedInteractionModule.cs
T
2025-05-03 21:43:02 +03:00

11 lines
228 B
C#

using System;
using System.Net;
using System.Threading.Tasks;
namespace mROA.Abstract
{
public interface IUntrustedInteractionModule : IInjectableModule, IDisposable
{
Task Start(IPEndPoint endpoint);
}
}