/*
* This file is part of laurelin/client
* Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
*
* Licensed under GPL-3.0-only.
* See LICENSE for licensing information.
*/
use reqwest;
use serde::{Deserialize, Serialize};
use super::{types, APIErrorWrapper};
#[derive(Debug, Serialize, Deserialize)]
#[serde(untagged)]
pub enum ResponseInfo {
Error(APIErrorWrapper),
Valid(types::Game),
}
pub fn info(api_address: String, token: String, game_id: String) -> ResponseInfo {
let client = reqwest::blocking::Client::new();
let resp = client
.get(&format!("{}/game/{}", api_address, game_id))
.header("Authorization", token)
.send()
.unwrap();
resp.json().unwrap()
}