From 64ee8f8e7639c1e84a7e68d45e2aceec5299a4d6 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Thu, 2 May 2024 00:05:53 +0500 Subject: feat: client for twitch api --- src/api/twitch/schemas/user.hpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/api/twitch/schemas/user.hpp (limited to 'src/api/twitch/schemas/user.hpp') diff --git a/src/api/twitch/schemas/user.hpp b/src/api/twitch/schemas/user.hpp new file mode 100644 index 0000000..288ec72 --- /dev/null +++ b/src/api/twitch/schemas/user.hpp @@ -0,0 +1,10 @@ +#pragma once + +#include + +namespace bot::api::twitch::schemas { + struct User { + int id; + std::string login; + }; +} -- cgit v1.2.3