A photo manager for VRChat.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 2a27e1a211a5653c5f923533d5f9c1bf746bb9bb 12 lines 300 B view raw
1use crate::worldscraper::World; 2use std::thread; 3use tauri::Emitter; 4 5// Load vrchat world data 6#[tauri::command] 7pub fn find_world_by_id(world_id: String, window: tauri::Window) { 8 thread::spawn(move || { 9 let world = World::new(world_id); 10 window.emit("world_data", world).unwrap(); 11 }); 12}