Tasker

A Simple crate which provides a service and a configuration API for genrating commands based tasks ,on time basis.

Installation

Install my-project with cargo

cargo cargo add tasker or add manually to your Cargo.toml file

example, start the service:

``` use tasker::taskerservice::mainservice; fn main(){ main_service(); }

```

example, add new task:

``` use tasker::taskerservice::mainservice; fn main(){ use tasker::taskerctl::{Task, addtask}; let mut task = Task::new(); //create new instance of Task DataType. task.name = Some("daily thing".tostring); //add the values you need ..... add_task(task);

}

```

Features

Notice

currently the crate is in development stage and is very likely to get updates on daily basis, until we reach stability.