esk 0.8.0

Encrypted Secrets Keeper with multi-target deploy
Documentation
1
2
3
4
5
6
7
8
9
10
use esk::mcp::EskMcpServer;
use rmcp::ServiceExt;
use tokio::io::{stdin, stdout};

#[tokio::main(flavor = "current_thread")]
async fn main() -> anyhow::Result<()> {
    let server = EskMcpServer::new().serve((stdin(), stdout())).await?;
    server.waiting().await?;
    Ok(())
}