Skip to content

Commit

Permalink
feat: #96 add fsops module with ManagedDirectory and DirectoryOps cla…
Browse files Browse the repository at this point in the history
…sses
  • Loading branch information
sonoh5n committed Jan 9, 2025
1 parent aab7fca commit a8cafcb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions rdetoolkit-core/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use pyo3::prelude::*;
use pyo3::wrap_pyfunction;
mod charset_detector;
mod fsops;
mod imageutil;

#[pymodule]
Expand All @@ -17,5 +18,8 @@ pub fn core(module: &Bound<'_, PyModule>) -> PyResult<()> {
module
)?)?;

module.add_class::<fsops::ManagedDirectory>()?;
module.add_class::<fsops::DirectoryOps>()?;

Ok(())
}

0 comments on commit a8cafcb

Please sign in to comment.