zeval_rs/
lib.rs

1pub struct Zeval {}
2
3impl Zeval {
4    pub fn new() -> Self {
5        Self {}
6    }
7
8    pub fn eval(&self, _output: &str, _prompt: &str) -> bool {
9        true
10    }
11}