mirror of
https://github.com/danbulant/oxc
synced 2026-05-21 13:18:59 +00:00
11 lines
191 B
Rust
11 lines
191 B
Rust
use std::path::PathBuf;
|
|
|
|
mod test_file;
|
|
|
|
pub use self::test_file::*;
|
|
|
|
/// # Panics
|
|
/// Invalid Project Root
|
|
pub fn project_root() -> PathBuf {
|
|
project_root::get_project_root().unwrap()
|
|
}
|