minehut 1.0.1

Simple Rust wrapper for the Minehut API
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # Minehut
//! 
//! `minehut` is the main file which contains all functions and modules
//! to retrieve information

pub mod models;
mod handlers;
pub mod minehut;
mod request;

pub use crate::minehut::*;