/* * Copyright (c) Kudo Chien. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include "V8RuntimeFactory.h" #include "V8Runtime.h" namespace rnv8 { std::unique_ptr createV8Runtime() { return std::make_unique(); } //std::unique_ptr createSharedV8Runtime( // const facebook::jsi::Runtime *sharedRuntime, // std::unique_ptr config) { // auto *sharedV8Runtime = dynamic_cast(sharedRuntime); // return std::make_unique(sharedV8Runtime, std::move(config)); //} } // namespace rnv8