export interface WebSocketsConnectionRepositoryInterface { findAllByUserUuid(userUuid: string): Promise saveConnection(userUuid: string, connectionId: string): Promise removeConnection(connectionId: string): Promise }