[go: up one dir, main page]

codama 0.1.1

Generate clients, CLIs, documentation and more from your Solana programs
Documentation
1
2
3
4
5
6
7
8
mod membership;

pub fn get_path(relative_path: &str) -> std::path::PathBuf {
    let project_dir = env!("CARGO_MANIFEST_DIR");
    std::path::Path::new(project_dir)
        .join("tests")
        .join(relative_path)
}