Files
galaxy/app/src/ai/mcp/dummy_file_mcp_watcher.rs
T

16 lines
289 B
Rust

use galaxyui::{Entity, ModelContext, SingletonEntity};
pub struct FileMCPWatcher {}
impl FileMCPWatcher {
pub fn new(_ctx: &mut ModelContext<Self>) -> Self {
Self {}
}
}
impl Entity for FileMCPWatcher {
type Event = ();
}
impl SingletonEntity for FileMCPWatcher {}