game_scanner/origin/utils/
linux.rs

1use std::path::PathBuf;
2
3use crate::error::{Error, ErrorKind, Result};
4
5pub fn get_launcher_executable() -> Result<PathBuf> {
6    return Err(Error::new(
7        ErrorKind::InvalidLauncher,
8        "launcher not supported",
9    ));
10}
11
12pub fn get_manifests_path() -> Result<PathBuf> {
13    return Err(Error::new(
14        ErrorKind::InvalidLauncher,
15        "launcher not supported",
16    ));
17}