vpr_core/paths/clinical/
ehr_status.rs

1//! EHR status file path constants.
2//!
3//! This module defines the filename for the EHR status YAML file.
4
5/// EHR status filename.
6pub struct EhrStatusFile;
7
8impl EhrStatusFile {
9    pub const NAME: &'static str = "ehr_status.yaml";
10}