1 2 3 4 5 6 7 8 9
//! Data types, functions and traits for the `v8` backend. pub(crate) mod bindings; pub(crate) mod entities; pub(crate) mod error; pub(crate) mod utils; pub(crate) mod vm; pub use entities::{engine::Engine as V8, *};