kick_rust/fetch/mod.rs
1//! HTTP fetching module for Kick API
2//!
3//! This module provides a clean, modular interface for fetching data from the Kick API.
4//! It focuses on using the official API endpoint: https://kick.com/api/v2/channels/{channel_name}
5
6pub mod client;
7pub mod strategies;
8pub mod parsers;
9pub mod types;
10pub mod useragent;
11
12pub use client::KickApiClient;
13pub use types::{ClientConfig, FetchResult, ChannelInfo};