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
#![warn(missing_docs)]

//! # lexoffice
//! The `lexoffice` crate provides a type safe and easy to use client to the
//! [LexOffice API](https://developers.lexoffice.io/docs/)

pub mod error;
pub mod model;
pub mod request;
pub mod types;

mod client;
#[cfg(feature = "fs")]
mod fs;
mod marker;
mod mime;
mod result;
mod serde;
mod util;

pub use client::ApiKey;
pub use client::Client;
pub use client::ClientBuilder;
pub use error::Error;
pub use marker::ReadOnly;
pub use result::Result;