| 1 | import { Repository } from './repository-fetcher'; |
| 2 | |
| 3 | interface LanguageComplexity { |
| 4 | [key: string]: number; |
| 5 | } |
| 6 | |
| 7 | const LANGUAGE_COMPLEXITY: LanguageComplexity = { |
| 8 | Rust: 9.5, |
nothing calls this directly
no outgoing calls
no test coverage detected