api-swgoh-gg

Crates.ioapi-swgoh-gg
lib.rsapi-swgoh-gg
version0.3.0
sourcesrc
created_at2019-08-16 01:17:42.858755
updated_at2020-02-19 09:41:27.654009
descriptionswgoh.gg API client
homepage
repositoryhttps://gitlab.com/swgoh-game/api-swgoh-gg
max_upload_size
id157232
size6,808
David Wittwer (Dawen18)

documentation

README

API SWGOH GG

dependency status pipeline status coverage report

Client for swogh.gg api

Installation

[dependencies]
api-swgog-gg = "0.2"

Example

This example print all units

extern crate api_swgoh_gg;

use api_swgoh_gg::get_units;

fn main(){
    let units = get_units().unwrap();
    
    units.iter().foreach(|u| println!("{}", unit.name));
}

Versioning

This project adheres to Semantic Versioning and use git flow branching model.

Roadmap

  • Add get for unit, ships, gear ans abilities
  • Add all guilds routes
  • Add all players routes

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 31

cargo fmt