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

11 lines
238 B
C#
Raw Normal View History

2024-08-14 23:57:43 +08:00
using Microsoft.AspNetCore.Builder;
namespace Bunny.Service.WebSocket;
2024-08-08 22:23:36 +08:00
public static class WebSocketInitial
{
2024-08-14 23:57:43 +08:00
public static void AddWebSocketInitial(this WebApplicationBuilder builder)
2024-08-08 22:23:36 +08:00
{
WebSocketTest.Start();
}
}