1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Helix endpoints regarding games
use crate::{helix, 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;