gw-bin 0.4.2

Watch git repositories, pull changes and run commands on the new files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use super::{Check, CheckError};
use crate::context::Context;
use std::result::Result;

/// A check to watch a directory for changes.
pub struct WatchCheck;

impl Check for WatchCheck {
    fn check(&mut self, _context: &mut Context) -> Result<bool, CheckError> {
        todo!()
    }
}

#[cfg(test)]
mod tests {}