cyclone_mod/lib.rs
1#![doc(
2 html_logo_url = "https://freepngimg.com/thumb/hurricane/31308-2-hurricane-clipart.png",
3 html_favicon_url = "https://freepngimg.com/thumb/hurricane/31308-2-hurricane-clipart.png"
4)]
5//! A rust wrapper for the Nexus Mods API.
6
7pub(crate) static VERSION: &str = "v1";
8
9mod api;
10pub mod err;
11pub mod request;
12
13pub use api::Api;