#![allow(unreachable_pub, clippy::todo, clippy::unimplemented, dead_code)]
pub struct UpstreamParams {
pub command: String,
pub args: Vec<String>,
}
pub fn upstream_params() -> UpstreamParams {
todo!()
}
pub struct ClientSession;
impl ClientSession {
pub async fn initialize(&self) {}
pub async fn list_tools(&self) -> Vec<String> {
todo!()
}
pub async fn call_tool(&self, _name: &str, _args: serde_json::Value) -> serde_json::Value {
todo!()
}
}