16 lines
289 B
Rust
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 {}
|