routa_core/rpc/methods/mod.rs
1//! JSON-RPC method implementations, organized by domain.
2//!
3//! Each sub-module exposes typed param/result structs and an async `handle`
4//! function that takes `AppState` + params and returns a `serde_json::Value`.
5
6pub mod agents;
7pub mod kanban;
8pub mod notes;
9pub mod skills;
10pub mod tasks;
11pub mod workspaces;