use crate::{
api::{
messages::{Event, EventInner, RegEvent},
ArgsBuilder, Client, Command, Response,
},
ctx,
plugin::Plugin,
utils, Result, TargetPtr,
};
#[derive(Default)]
pub struct Reads;
impl Reads {
fn new() -> Self {
Self
}
pub fn dependecies() -> Vec<Plugin> {
vec![Plugin::Files]
}
pub fn init(_client: crate::Client) -> Result<ctx::Secondary<Self, crate::Error>> {
log::error!("read plugin is not finished and will not give expected results");
todo!();
}
}