vpr_core/paths/
common.rs

1//! Common constants for patient records.
2//!
3//! This module defines shared constants used across different patient record types.
4
5/// Git ignore filename.
6pub struct GitIgnoreFile;
7
8impl GitIgnoreFile {
9    pub const NAME: &'static str = ".gitignore";
10}