genotype_lang_core_project/
source.rs

1use std::path::PathBuf;
2
3#[derive(Debug, PartialEq, Clone)]
4pub struct GTLangProjectSource {
5    pub path: PathBuf,
6    pub code: String,
7}