diff --git a/routers/api/v1/wssessions/wssessions.go b/routers/api/v1/wssessions/wssessions.go index 68e240d..4b46a63 100644 --- a/routers/api/v1/wssessions/wssessions.go +++ b/routers/api/v1/wssessions/wssessions.go @@ -11,10 +11,6 @@ func AddUserWebSocketSession(c *fiber.Ctx) error { // swagger:operation POST /wsconnections/:userId/:webSocketSession wsconnections wsconnectionsAddUserWebSocketSession // --- // summary: Add user websocket session - // consumes: - // - application/json - // produces: - // - application/json // parameters: // - name: X-Ms-Api // in: header @@ -53,8 +49,6 @@ func ExistsUserWebSocketSession(c *fiber.Ctx) error { // swagger:operation GET /wsconnections/:userId/:webSocketSession wsconnections wsconnectionsExistsUserWebSocketSession // --- // summary: Returns whether the user websocket session already exists - // consumes: - // - application/json // produces: // - application/json // parameters: @@ -72,8 +66,6 @@ func GetUserWebSocketSessions(c *fiber.Ctx) error { // swagger:operation GET /wsconnections/:userId wsconnections wsconnectionsGetUserWebSocketSessions // --- // summary: List of all websocket sessions of the user that are connected - // consumes: - // - application/json // produces: // - application/json // parameters: @@ -99,10 +91,6 @@ func RemoveConnection(c *fiber.Ctx) error { // swagger:operation DELETE /wsconnections/:userId/:webSocketSession wsconnections wsconnectionsRemoveConnection // --- // summary: Deletes a websocket session from the user - // consumes: - // - application/json - // produces: - // - application/json // parameters: // - name: X-Ms-Api // in: header