boreholeio 0.1.0

A library for interacting with borehole.io, a subsurface data management, delivery and visualisation platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[derive(Default)]
pub enum Authentication {
    #[default]
    None,

    Application(ApplicationAuthentication),
    Organisation(OrganisationAuthentication),
}

pub struct ApplicationAuthentication {
    pub jwt: String,
}

pub struct OrganisationAuthentication {
    pub api_key: String,
}