10 lines
156 B
C#
10 lines
156 B
C#
using System;
|
|
|
|
namespace Fleck
|
|
{
|
|
public interface IWebSocketServer : IDisposable
|
|
{
|
|
void Start(Action<IWebSocketConnection> config);
|
|
}
|
|
}
|