uda-connector 0.1.0

A Rust lib to access UDA (unicycling registration software)
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::error::UdaError;

pub mod error;
pub mod credentials;
pub mod imported_uda_member;
pub mod instances;
pub mod login;
pub mod retrieve_members;
mod tools;

pub type Result<T, E = UdaError> = std::result::Result<T, E>;