organize-rs 0.4.1

organize - a file management automation tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// use rhai::{CustomType, TypeBuilder};

// impl CustomType for FilterCmd {
//     fn build(mut builder: TypeBuilder<'_, Self>) {
//         #[allow(deprecated)] // The TypeBuilder api is volatile.
//         builder
//             .with_name("FilterCmd")
//             .with_fn("run_filter", Self::run_filter);
//         // .is_iterable()
//         // .with_get_set("x", Self::get_x, Self::set_x);
//     }
// }

pub fn add(x: i64, y: i64) -> i64 {
    x + y
}