mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
13 lines
274 B
Rust
13 lines
274 B
Rust
use std::path::PathBuf;
|
|
|
|
mod codegen;
|
|
mod flags;
|
|
use std::env;
|
|
|
|
fn project_root() -> PathBuf {
|
|
let dir =
|
|
env::var("CARGO_MANIFEST_DIR").unwrap_or_else(|_| env!("CARGO_MANIFEST_DIR").to_owned());
|
|
PathBuf::from(dir).parent().unwrap().to_owned()
|
|
}
|
|
fn main() {}
|