1/// Configuration for the IRC client
2pub struct Config {
3/// The hostname to connect to
4pub host: String,
56/// The port of the IRC server
7pub port: u16,
89/// Whether or not to enable SSL
10pub ssl: bool,
1112/// The nick to connect with
13pub nick: String,
14}