twitch_api2 0.6.1

Library for talking with the new Twitch API aka. "Helix", TMI and more!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Helix endpoints regarding games
use crate::{
    helix::{self, Request},
    types,
};

use serde::{Deserialize, Serialize};

pub mod get_games;
pub mod get_top_games;

#[doc(inline)]
pub use get_games::GetGamesRequest;
#[doc(inline)]
pub use get_top_games::GetTopGamesRequest;
pub use types::TwitchCategory as Game;