mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-20 14:52:41 -04:00
Add some websocket manager boilerplate
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using System.Threading.Tasks;
|
||||
using MediaBrowser.Model.Net;
|
||||
|
||||
namespace Emby.Server.Implementations.WebSockets
|
||||
{
|
||||
public interface IWebSocketHandler
|
||||
{
|
||||
Task ProcessMessage(WebSocketMessage<object> message);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user