mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
11 lines
229 B
C#
11 lines
229 B
C#
using Netch.Models.Modes;
|
|
using Netch.Servers;
|
|
|
|
namespace Netch.Interfaces;
|
|
|
|
public interface IModeController : IController
|
|
{
|
|
public ModeFeature Features { get; }
|
|
|
|
public Task StartAsync(Socks5Server server, Mode mode);
|
|
} |