basispoort-sync-client 0.3.0

An API client to help synchronize institution data with the Basispoort educational material SSO service.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub use url::Url;

pub mod error;

#[cfg(feature = "hosted-license-provider")]
pub mod hosted_license_provider;

#[cfg(feature = "institutions")]
pub mod institutions;

pub mod rest;

pub type Result<T> = std::result::Result<T, Box<crate::error::Error>>;