bendis 0.1.1

A patch tool for Bender to work better in HERIS project
1
2
3
4
5
6
7
8
9
10
11
use std::path::PathBuf;

/// Get the .bendis directory path
pub fn get_bendis_dir() -> PathBuf {
    PathBuf::from(".bendis")
}

/// Get the project root directory path
pub fn get_root_dir() -> PathBuf {
    PathBuf::from(".")
}