poet 0.7.0

Static site generator with optional MCP server and LLM SEO optimizations
Documentation
1
2
3
4
5
6
7
8
9
use tokio::sync::mpsc::Receiver;

use crate::mcp::jsonrpc::server_to_client_notification::ServerToClientNotification;
use crate::mcp::session::Session;

pub struct SessionWithNotificationsReceiver {
    pub notification_rx: Receiver<ServerToClientNotification>,
    pub session: Session,
}