DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 85f88d2f9bd31a91f928a7fcb77c509b8ff59c87 deck-builder/sdbclient/src/api/mod.rs -rw-r--r-- 616 bytes
85f88d2fJonni Liljamo APIError struct and login/register API calls 1 year, 9 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * This file is part of sdbclient
 * Copyright (C) 2022 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.
 * See LICENSE for licensing information.
 */

use reqwest;
use serde::{Deserialize, Serialize};

pub mod user;

#[derive(Deserialize)]
pub struct APIError {
    pub error: String,
}

#[derive(Serialize, Deserialize)]
pub struct APIInfo {
    pub info: String,
    pub ver: String,
}

pub fn info(api_address: String) -> APIInfo {
    let client = reqwest::blocking::Client::new();

    let resp = client.get(&format!("{}/info", api_address)).send().unwrap();

    resp.json().unwrap()
}