data_access_layer/
lib.rs

1pub mod images;
2pub mod srt_reciever;
3pub mod tags;
4
5#[cfg(feature = "python")]
6pub mod python_api;
7
8#[cfg(feature = "python")]
9use pyo3::prelude::*;
10
11
12#[cfg(feature = "python")]
13#[pymodule]
14fn data_access_layer(_py: Python, m: &PyModule) -> PyResult<()> {
15    m.add_function(wrap_pyfunction!(python_api::read_rgb_image, m)?)?;
16    Ok(())
17}
18