Add kick streaming option

This commit is contained in:
dec05eba
2026-01-18 16:22:49 +01:00
parent aa717a95ec
commit 40b2af5668
6 changed files with 28 additions and 2 deletions

View File

@@ -97,6 +97,11 @@ namespace gsr {
std::string stream_key;
};
struct KickStreamConfig {
std::string stream_url;
std::string stream_key;
};
struct CustomStreamConfig {
std::string url;
std::string key;
@@ -109,6 +114,7 @@ namespace gsr {
YoutubeStreamConfig youtube;
TwitchStreamConfig twitch;
RumbleStreamConfig rumble;
KickStreamConfig kick;
CustomStreamConfig custom;
ConfigHotkey start_stop_hotkey;
};