squall_logging/
lib.rs

1// src/lib.rs
2pub struct Logger;
3impl Logger {
4    pub fn info(&self, _msg: &str) {
5        unimplemented!()
6    }
7}