mirror of
https://github.com/tommyxchow/frosty.git
synced 2025-08-06 08:51:29 +08:00
21 lines
436 B
Dart
21 lines
436 B
Dart
/// Twitch API client ID.
|
|
const clientId = String.fromEnvironment('CLIENT_ID');
|
|
|
|
/// Twitch API client secret.
|
|
const secret = String.fromEnvironment('SECRET');
|
|
|
|
/// The current version of the app.
|
|
const version = '1.0.0-beta+4';
|
|
|
|
/// BTTV emotes with zero width to allow for overlaying other emotes.
|
|
const zeroWidthEmotes = [
|
|
"SoSnowy",
|
|
"IceCold",
|
|
"SantaHat",
|
|
"TopHat",
|
|
"ReinDeer",
|
|
"CandyCane",
|
|
"cvMask",
|
|
"cvHazmat",
|
|
];
|