We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DonsWayo/tauri-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
mod.rs•638 B
// Platform module - conditionally exports the appropriate platform implementation
// Add shared module for common functionality
pub mod shared;
// Define platform-specific modules
#[cfg(target_os = "macos")]
pub mod macos;
#[cfg(target_os = "windows")]
pub mod windows;
#[cfg(not(any(target_os = "macos", target_os = "windows")))]
pub mod unix;
// Re-export the current platform implementation under a common name
#[cfg(target_os = "macos")]
pub use self::macos as current;
#[cfg(target_os = "windows")]
pub use self::windows as current;
#[cfg(not(any(target_os = "macos", target_os = "windows")))]
pub use self::unix as current;