14 lines
393 B
Go
14 lines
393 B
Go
package structs
|
|
|
|
// swagger:model ExistsUserWebSocketSessionsResponse
|
|
type ExistsUserWebSocketSessionsResponse struct {
|
|
// Returns whether the user websocket session already exists or not
|
|
E bool
|
|
}
|
|
|
|
// swagger:model GetUserWebSocketSessionsResponse
|
|
type GetUserWebSocketSessionsResponse struct {
|
|
// List of all websocket sessions of the user that are connected
|
|
WebSocketSessions []string
|
|
}
|