1 2 3 4 5 6 7 8 9 10 11
use pforge_runtime::*; mod handlers; #[tokio::main] async fn main() -> Result<()> { // Server will be auto-generated from pforge.yaml // This is a placeholder - actual implementation in later tickets println!("{{PROJECT_NAME}} MCP server"); Ok(()) }