nu_plugin_twitch 0.1.1

A Nu Shell plugin to interact with Twitch IRC and API, making scripting easier.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! A `nu` plugin to interact with Twitch IRC & API.
//!
//! Currently provide the following commands:
//!   - `twitch auth` for authentication, with support for multiple profiles
//!   - `twitch chat` for listening to Twitch chat via IRC
//!   - `twitch notices` for listening to Twitch events via IRC
//!   - `twitch say` for saying someing in Twitch chat via IRC (require authentication)

pub(crate) mod auth;

/// Definition of all the nu commands
pub mod commands;
/// Definition of the custom types returned by the commands
pub mod values;

mod plugin;
/// Plugin interface implementation
pub use plugin::TwitchPlugin;