CSharp-Single-EFCore/Bunny.Service/WebSocket/WebSocketInitial.cs

11 lines
238 B
C#

using Microsoft.AspNetCore.Builder;
namespace Bunny.Service.WebSocket;
public static class WebSocketInitial
{
public static void AddWebSocketInitial(this WebApplicationBuilder builder)
{
WebSocketTest.Start();
}
}