summaryrefslogtreecommitdiff
path: root/protocol/src/lib.rs
blob: a56554f3cd16685be1cc5e8f4e99a1de3a829f57 (plain)
1
2
3
4
5
6
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, PartialEq, Eq, Clone, Debug)]
pub struct UserInfo {
    pub username: String,
}