summaryrefslogtreecommitdiff
path: root/core/ops.rs
diff options
context:
space:
mode:
Diffstat (limited to 'core/ops.rs')
-rw-r--r--core/ops.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ops.rs b/core/ops.rs
index 6dc0a7323..c840ed979 100644
--- a/core/ops.rs
+++ b/core/ops.rs
@@ -27,7 +27,7 @@ pub type CoreError = ();
pub type CoreOp = Op<CoreError>;
/// Main type describing op
-type OpDispatcher =
+pub type OpDispatcher =
dyn Fn(&[u8], Option<PinnedBuf>) -> CoreOp + Send + Sync + 'static;
#[derive(Default)]