ghastoolkit 0.12.2

GitHub Advanced Security Toolkit in Rust
Documentation
1
2
3
4
5
6
7
8
use std::collections::HashMap;

/// JSON representation of the languages supported by the CodeQL CLI
///
/// ```bash
/// codeql resolve languages --format json
/// ```
pub(crate) type ResolvedLanguages = HashMap<String, Vec<String>>;