retrom-plugin-installer 0.4.9

Retrom plugin that facilitates the installation of games locally.
1
2
3
4
5
6
7
8
9
10
const COMMANDS: &[&str] = &[
    "install_game",
    "uninstall_game",
    "get_game_installation_status",
    "get_installation_state",
];

fn main() {
    tauri_plugin::Builder::new(COMMANDS).build();
}