Tauri v2 desktop app (React/TypeScript + Rust) for managing containerized Claude Code environments. Includes Gitea Actions workflow for building and pushing the sandbox container image, and a BUILDING.md guide for manual app builds on Linux and Windows. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
141 B
Rust
10 lines
141 B
Rust
pub mod client;
|
|
pub mod container;
|
|
pub mod image;
|
|
pub mod exec;
|
|
|
|
pub use client::*;
|
|
pub use container::*;
|
|
pub use image::*;
|
|
pub use exec::*;
|