ircmsgprs

A simple Rust library that parses IRC protocol messages and turns them into the following struct: ```Rust

[derive(Default, Debug)]

pub struct Message { pub server: Option, pub nick: Option, pub user: Option, pub host: Option, pub command: String, pub params: Vec, } ```

License

Licensed under the MIT license. See the license file for details.