oc_wasm_opencomputers/prelude.rs
1//! Provides symbols that virtually all consumers will want to import all of.
2//!
3//! Importing `*` from the prelude should be reasonably safe. The prelude largely exports traits as
4//! `_` so that methods can be called on them. Any names in the prelude are chosen to be extremely
5//! unlikely to collide.
6
7pub use oc_wasm_helpers::Lockable as _;