| 16 | ) |
| 17 | |
| 18 | type FormPush struct { |
| 19 | Msg string `form:"msg" json:"msg" binding:"required"` |
| 20 | ToUserId string `form:"toUserId" json:"toUserId" binding:"required"` |
| 21 | RoomId int `form:"roomId" json:"roomId" binding:"required"` |
| 22 | AuthToken string `form:"authToken" json:"authToken" binding:"required"` |
| 23 | } |
| 24 | |
| 25 | func Push(c *gin.Context) { |
| 26 | var formPush FormPush |
nothing calls this directly
no outgoing calls
no test coverage detected