
- Implemented GitHub agent browser in CCAgents component - Created GitHubAgentBrowser component for browsing and importing agents - Added Rust commands for fetching and importing agents from GitHub - Updated API layer with GitHub agent import methods - Updated Cargo.toml with new dependencies - Fixed Tauri configuration and capabilities - Added dropdown menu for import options - Implemented search and preview functionality for GitHub agents
16 lines
387 B
Rust
16 lines
387 B
Rust
// Learn more about Tauri commands at https://tauri.app/develop/calling-rust/
|
|
|
|
// Declare modules
|
|
pub mod commands;
|
|
pub mod sandbox;
|
|
pub mod checkpoint;
|
|
pub mod process;
|
|
pub mod claude_binary;
|
|
|
|
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
|
pub fn run() {
|
|
tauri::Builder::default()
|
|
.run(tauri::generate_context!())
|
|
.expect("error while running tauri application");
|
|
}
|