summaryrefslogtreecommitdiff
path: root/src/api/twitch/schemas
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-05-02 00:05:53 +0500
committerilotterytea <iltsu@alright.party>2024-05-02 00:05:53 +0500
commit64ee8f8e7639c1e84a7e68d45e2aceec5299a4d6 (patch)
treecbed19fbf96eceab891d8435eb80f69d51e7ed0f /src/api/twitch/schemas
parentde0439408529a257f975e613a9ac6b31926844f6 (diff)
feat: client for twitch api
Diffstat (limited to 'src/api/twitch/schemas')
-rw-r--r--src/api/twitch/schemas/user.hpp10
1 files changed, 10 insertions, 0 deletions
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 <string>
+
+namespace bot::api::twitch::schemas {
+ struct User {
+ int id;
+ std::string login;
+ };
+}