diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2022-04-08 10:32:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-08 10:32:48 +0200 |
commit | f5f7b56acaf45a7f858db6f25ad5985ab4d8c7b9 (patch) | |
tree | ec956b0df25e3a326b2eb057eb199184f0dad00e /core/lib.rs | |
parent | b2aaf708abd1af7c6df34a273a1720de63f93fcc (diff) |
refactor(core): OpCtx (#14228)
Diffstat (limited to 'core/lib.rs')
-rw-r--r-- | core/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/lib.rs b/core/lib.rs index b9391aff6..652ad2cd6 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -108,6 +108,7 @@ pub mod _ops { pub use super::bindings::throw_type_error; pub use super::error_codes::get_error_code; pub use super::ops::to_op_result; + pub use super::ops::OpCtx; pub use super::runtime::queue_async_op; } |