hwp 0.1.0

낮은 수준의 hwp파서
Documentation
1
2
3
4
5
6
7
8
use std::path::PathBuf;

pub fn get_tests_path(sub_path: &str) -> PathBuf {
    let mut path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
    path.push("tests");
    path.push(&sub_path);
    path
}