summaryrefslogtreecommitdiff
path: root/server/protocol/src/registry.rs
blob: b5b83bd1458054904c85c95d98c3ec81809e136c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize)]
pub struct Entry {
    pub name: String,
    pub address: Vec<String>,
    pub players_online: usize,
    pub last_game: i64,
    pub version: (u32, u32),
}

#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct Submission {
    pub secret: u128,
    pub name: String,
    pub players: usize,
    pub last_game: i64,
    pub version: (u32, u32),
    pub uri: String,
}