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