vpr_core/paths/demographics/
patient.rs

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