#include #include #include #include #include #include #include #include IMHEX_PLUGIN_SETUP("Remote", "WerWolv", "Reading data from remote servers") { hex::log::debug("Using romfs: '{}'", romfs::name()); hex::LocalizationManager::addLanguages(romfs::get("lang/languages.json").string(), [](const std::filesystem::path &path) { return romfs::get(path).string(); }); hex::plugin::remote::SSHClient::init(); AT_FINAL_CLEANUP { hex::plugin::remote::SSHClient::exit(); }; hex::ContentRegistry::Provider::add(); }