17 lines
370 B
Go
17 lines
370 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)
|
||
|
|
||
|
}
|