/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
private/react-native-fantom/tester/src/stubs/StubHttpClient.cpp
17 строк
428 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 "StubHttpClient.h" #include <react/http/IHttpClient.h> namespace facebook::react { HttpClientFactory getStubHttpClientFactory() { return []() { return std::make_unique<StubHttpClient>(); }; } } // namespace facebook::react