21 lines
430 B
Go
21 lines
430 B
Go
package routers
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"sourcecode.social/greatape/goldgorilla/controllers"
|
|
)
|
|
|
|
func registerRoomRoutes(rg *gin.RouterGroup, ctrl *controllers.RoomController) {
|
|
|
|
rg.POST("/peer", ctrl.CreatePeer)
|
|
rg.DELETE("/peer", ctrl.ClosePeer)
|
|
|
|
rg.POST("/ice", ctrl.AddICECandidate)
|
|
rg.POST("/answer", ctrl.Answer)
|
|
rg.POST("/offer", ctrl.Offer)
|
|
|
|
rg.POST("/", ctrl.Start)
|
|
rg.DELETE("/", ctrl.ResetRoom)
|
|
|
|
}
|