This commit is contained in:
Senstella
2025-10-07 22:46:07 +09:00
commit faf1f49d50
7 changed files with 1745 additions and 0 deletions

12
src/main.rs Normal file
View File

@@ -0,0 +1,12 @@
use crate::mcp::FossilEditor;
use rmcp::{ServiceExt, transport::stdio};
mod fossil;
mod matcher;
mod mcp;
#[tokio::main]
async fn main() {
let editor = FossilEditor::new();
let _ = editor.serve(stdio()).await;
}