diff options
| author | ilotterytea <iltsu@alright.party> | 2024-05-02 00:05:53 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-05-02 00:05:53 +0500 |
| commit | 64ee8f8e7639c1e84a7e68d45e2aceec5299a4d6 (patch) | |
| tree | cbed19fbf96eceab891d8435eb80f69d51e7ed0f /src/api/twitch/schemas/user.hpp | |
| parent | de0439408529a257f975e613a9ac6b31926844f6 (diff) | |
feat: client for twitch api
Diffstat (limited to 'src/api/twitch/schemas/user.hpp')
| -rw-r--r-- | src/api/twitch/schemas/user.hpp | 10 |
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; + }; +} |
