inexor_rgf_model_file/component/
fs_notify.rs

1
2
3
4
5
6
7
8
9
use crate::model::component_ty;
use crate::model::entity_model;
use crate::model_runtime::Action;
use crate::NAMESPACE_FILE;

component_ty!(COMPONENT_FS_NOTIFY, NAMESPACE_FILE, COMPONENT_NAME_FS_NOTIFY, "fs_notify");

entity_model!(FsNotify, get trigger bool, set filename string);
impl Action for FsNotify {}