Add simple data store
All checks were successful
Build Crate / build (push) Successful in 8m5s

This commit is contained in:
2023-09-20 00:28:16 -04:00
parent 0a1c81c44e
commit ec06340def
10 changed files with 98 additions and 13 deletions

11
src/data/pool_match.rs Normal file
View File

@@ -0,0 +1,11 @@
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Clone)]
pub struct PoolMatch {
pub players: Vec<String>,
pub winner: String,
}
#[derive(Serialize, Deserialize, Clone)]
pub struct PoolMatchList {
pub pool_matches: Vec<PoolMatch>,
}