| 8 | use thiserror::Error; |
| 9 | |
| 10 | pub struct JavaInstallInfo { |
| 11 | path: String, |
| 12 | major_version: u32, |
| 13 | version: String, |
| 14 | architecture: helixlauncher_meta::component::Arch, |
| 15 | } |
| 16 | |
| 17 | #[derive(Error, Debug)] |
| 18 | pub enum SearchError { |
nothing calls this directly
no outgoing calls
no test coverage detected