| 64 | } |
| 65 | |
| 66 | type FormRoom struct { |
| 67 | AuthToken string `form:"authToken" json:"authToken" binding:"required"` |
| 68 | Msg string `form:"msg" json:"msg" binding:"required"` |
| 69 | RoomId int `form:"roomId" json:"roomId" binding:"required"` |
| 70 | } |
| 71 | |
| 72 | func PushRoom(c *gin.Context) { |
| 73 | var formRoom FormRoom |
nothing calls this directly
no outgoing calls
no test coverage detected