A photo manager for VRChat.
0
fork

Configure Feed

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

1#[tauri::command] 2pub fn get_os() -> String { 3 #[cfg(windows)] 4 return "windows".into(); 5 6 #[cfg(unix)] 7 return "unix".into(); 8}