// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the Apache 2.0 License. #pragma once #include #include namespace ccf::js { class Context; struct FFIPlugin { std::string name; std::string ccf_version; std::function extend; }; }