wip: 0.2.3

1. websocket hook
  2. rtc init ok
This commit is contained in:
loveuer
2025-05-20 18:04:37 +08:00
parent becbc137c5
commit 16e9d663f4
9 changed files with 223 additions and 246 deletions

View File

@ -26,6 +26,7 @@ func Start(ctx context.Context) <-chan struct{} {
{
api := app.Group("/api/ulocal")
api.Post("/register", handler.LocalRegister())
api.Post("/offer", handler.LocalOffer())
api.Get("/clients", handler.LocalClients())
api.Get("/ws", handler.LocalWS())
}