Skip to main content

dicom_toolkit_core/
lib.rs

1//! ⚠️ **NOT FOR CLINICAL USE** — This software has not been validated for diagnostic or therapeutic purposes.
2//!
3//! Foundation types and utilities for the dicom-toolkit-rs DICOM toolkit.
4
5pub mod charset;
6pub mod config;
7pub mod error;
8pub mod log;
9pub mod uid;
10
11pub use error::{DcmError, DcmResult};
12pub use uid::Uid;