summaryrefslogtreecommitdiff
path: root/server/protocol/src/registry.rs
blob: 92f2c45411285cd11ac59168a6c5c109674dcee2 (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, 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, 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,
}