pamly 0.3.5

Command line interface for digital pathology tools.
Documentation
#[cfg(feature = "convert")]
pub mod convert;

mod database;
pub use database::Database;
pub use database::SlideData;

pub mod types;
pub use types::*;

use pyo3::prelude::*;

#[pymodule]
fn pamly(m: &Bound<'_, PyModule>) -> PyResult<()> {
    m.add_class::<types::Diagnosis>()?;
    m.add_class::<types::Stain>()?;
    m.add_class::<types::TileLabel>()?;
    Ok(())
}