9 lines
265 B
Rust
9 lines
265 B
Rust
|
|
mod types;
|
||
|
|
mod loader;
|
||
|
|
mod globals;
|
||
|
|
|
||
|
|
pub use types::{PluginBoxV2, PluginHandleInner, NyashTypeBoxFfi, make_plugin_box_v2, construct_plugin_box};
|
||
|
|
pub use loader::{PluginLoaderV2};
|
||
|
|
pub use globals::{get_global_loader_v2, init_global_loader_v2, shutdown_plugins_v2};
|
||
|
|
|