DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: e8e1276a35ebfeeb0439849fd89eb3ca3b9f90be deck-builder/client/src/macros/request.rs -rw-r--r-- 992 bytes
e8e1276aJonni Liljamo feat(client): kinda cleanup seed_gen usage 1 year, 5 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
32
33
34
35
36
37
38
39
40
41
/*
 * 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.
 */

#[macro_export]
macro_rules! get_request_auth {
    ($no:expr, $path:expr) => {
        $no.req
            .get(&format!("{}{}", &$no.api_address, &$path))
            .header("Authorization", &$no.user_token)
            .send()
            .unwrap()
    };
}

#[macro_export]
macro_rules! post_request {
    ($no:expr, $path:expr, $input:expr) => {
        $no.req
            .post(&format!("{}{}", &$no.api_address, &$path))
            .json($input)
            .send()
            .unwrap()
    };
}

#[macro_export]
macro_rules! post_request_auth {
    ($no:expr, $path:expr, $input:expr) => {
        $no.req
            .post(&format!("{}{}", &$no.api_address, &$path))
            .header("Authorization", &$no.user_token)
            .json($input)
            .send()
            .unwrap()
    };
}