atex 0.3.0

Lib for async local task evaluation(sqlite or in-memory)
Documentation
1
2
3
4
5
6
7
8
9
use crate::proto::ILogger;

pub struct MockLogger;

impl ILogger for MockLogger {
    fn log(&self, msg: &str) {
        eprintln!("{}", msg);
    }
}