1 2 3 4 5 6 7 8 9
use crate::prelude::internal::*; pub trait GtbFsEnv { /// Returns the current working directory path. fn cwd_path(&self) -> &GtpCwdPath; /// Returns the base project directory to resolve relative file paths. fn base_path(&self) -> &GtpCwdRelativePath; }