mezmo-rs

Use Mezmo platform with Rust.

Example

```rust use mezmo::Logger;

fn main() { let logger = Logger::new("YOURAPIKEYHERE".tostring(), "tag1,tag2,tag3".tostring()); logger.log("this is a log".tostring(), "INFO".to_string());
} ```