nyar 0.1.1

nyar is a task management program written in Rust, which allows you to run and manage various tasks in the background, such as scheduled tasks, start tasks, restart tasks, etc.
1
2
3
4
5
6
7
8
9
mod pushplus;
pub use pushplus::*;
pub trait Push {
    async fn send_message(
        &self,
        message: String,
        title: String,
    ) -> Result<bool, Box<dyn std::error::Error>>;
}