From da87ad0e5b477d33ffa14269f293e7c3baab4d4b Mon Sep 17 00:00:00 2001 From: derekpierre Date: Thu, 17 Aug 2023 15:24:43 -0400 Subject: [PATCH] Add AccessControlPolicy and ThresholdMessageKit to `nucypher_core` python module. --- nucypher-core-python/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nucypher-core-python/src/lib.rs b/nucypher-core-python/src/lib.rs index 1ace71fd..2ef4ceec 100644 --- a/nucypher-core-python/src/lib.rs +++ b/nucypher-core-python/src/lib.rs @@ -1525,6 +1525,8 @@ fn _nucypher_core(py: Python, core_module: &PyModule) -> PyResult<()> { core_module.add_class::()?; core_module.add_class::()?; core_module.add_class::()?; + core_module.add_class::()?; + core_module.add_class::()?; // Build the umbral module let umbral_module = PyModule::new(py, "umbral")?;