cyclone-mod 0.1.0

A NexusMods API wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc(
    html_logo_url = "https://freepngimg.com/thumb/hurricane/31308-2-hurricane-clipart.png",
    html_favicon_url = "https://freepngimg.com/thumb/hurricane/31308-2-hurricane-clipart.png"
)]
//! A rust wrapper for the Nexus Mods API.

pub(crate) static VERSION: &str = "v1";

mod api;
pub mod err;
pub mod request;

pub use api::Api;