/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
private/react-native-fantom/tester/src/stubs/StubWebSocketClient.cpp
18 строк
454 B
Rubén Norte
Add support for JS debugging in Fantom (#53215)
12 авг 2025, 15:41
12 авг 2025, 15:41
65974e9
Код
Авторство
О чём код?
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include "StubWebSocketClient.h" #include <react/http/IWebSocketClient.h> namespace facebook::react { WebSocketClientFactory getStubWebSocketClientFactory() { return []() { return std::make_unique<StubWebSocketClient>(); }; } } // namespace facebook::react