warptrixy 0.1.3

Simple API Wrapper for the AWTRIX 3
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::Config;
use reqwest::Client;

pub struct Warptrixy {
    pub config: Config,
    pub(crate) client: Client,
}

impl Warptrixy {
    pub fn new(config: Config) -> Self {
        Warptrixy {
            config,
            client: Client::new(),
        }
    }
}