studentvue/
lib.rs

1#![allow(unused_imports)]
2
3//! # StudentVue
4//! StudentVue is a simplistic Rust API to access various services offered by the StudentVUE App
5//! in a convenient format.
6//!
7//! ## Features
8//! - Asynchronous
9//! - Retrieve grades, school information, schedules, attendance
10//! - Support for various API methods
11
12pub use client::ParamBuilder;
13pub use client::Client;
14pub use enums::Method;
15pub use request::WebHandle;
16
17pub mod client;
18pub mod enums;
19pub mod error;
20pub mod request;
21pub mod model;