1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../../docs/client.md")]

pub mod auth;
pub mod client_check_v1;
pub mod events;
pub mod user;

pub struct ClientCheckServerRequest {}

pub struct ClientCheckServerResponse {
    pub server_version: String,
    pub server_name: String,
    pub server_description: String,
}