feat: implement remote server search capabilities with WebSocket support

This commit is contained in:
David Snelling 2025-06-06 10:48:01 -07:00
parent 6ccbd01654
commit bf3d9a055b
3 changed files with 460 additions and 5 deletions

View file

@ -136,6 +136,11 @@ import {
WebRTCConduitAugmentation,
createConduitAugmentation
} from './augmentations/conduitAugmentations.js'
import {
ServerSearchConduitAugmentation,
ServerSearchActivationAugmentation,
createServerSearchAugmentations
} from './augmentations/serverSearchAugmentations.js'
export {
MemoryStorageAugmentation,
@ -144,7 +149,10 @@ export {
createMemoryAugmentation,
WebSocketConduitAugmentation,
WebRTCConduitAugmentation,
createConduitAugmentation
createConduitAugmentation,
ServerSearchConduitAugmentation,
ServerSearchActivationAugmentation,
createServerSearchAugmentations
}