mirror of
https://github.com/github/codeql.git
synced 2026-02-10 20:21:10 +01:00
9 lines
171 B
Rust
9 lines
171 B
Rust
use std::path::PathBuf;
|
|
|
|
pub struct Language {
|
|
pub name: String,
|
|
pub node_types: &'static str,
|
|
pub dbscheme_path: PathBuf,
|
|
pub ql_library_path: PathBuf,
|
|
}
|