diff options
author | Gurwinder Singh <vargwin@gmail.com> | 2020-07-14 01:49:51 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-13 16:19:51 -0400 |
commit | d51972377c1325076704d9faec2eee6f0e024496 (patch) | |
tree | 67c75b20d8e07ff356652c71a6c9e87cd36ab41f /core/lib.rs | |
parent | 6af5149ea3d9b0accf7122073abbf852e355846f (diff) |
refactor: Make OpDispatcher a trait (#6736)
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 7358af1c4..f348ed6cf 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -46,6 +46,7 @@ pub use crate::modules::RecursiveModuleLoad; pub use crate::ops::Buf; pub use crate::ops::Op; pub use crate::ops::OpAsyncFuture; +pub use crate::ops::OpDispatcher; pub use crate::ops::OpId; pub use crate::resources::ResourceTable; pub use crate::zero_copy_buf::ZeroCopyBuf; |