retrom-plugin-installer 0.2.2

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

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