rustchat/src/config.rs

10 lines
177 B
Rust
Raw Normal View History

2021-12-31 02:05:32 +01:00
use serde::{Serialize, Deserialize};
#[derive(Debug, Serialize, Deserialize)]
pub struct ConfigArgs {
pub host: String,
pub port: u16,
pub greeting_msg: String,
}