ggapi

A library for communicating with start.gg's API.

Usage

```rust let data = gettournamentinfo( "evo-2023","INSERTTOKENHERE" ).await;

println!("{}", data.tournament().name()); println!("{}", data.tournament().startat().tostring()); println!("{}", data.tournament().slug()); println!("{}", data.tournament().short_slug()); ```

Notes

start.gg has a rate limit and additionally a limit to 1000 objects per query response. If you are working with a large tournament with a significant number of events and attendees, you may run into this limit.