adk_studio/
lib.rs

1//! ADK Studio - Visual development environment for ADK-Rust agents
2//!
3//! Build-only architecture: Users create agents in UI, build to binary, run compiled code.
4
5pub mod codegen;
6pub mod schema;
7pub mod server;
8pub mod storage;
9
10pub use schema::{AgentSchema, ProjectSchema, ToolSchema, WorkflowSchema};
11pub use server::{AppState, api_routes};
12pub use storage::FileStorage;