diff options
author | Jonathan B <greenbigfrog@gmail.com> | 2019-08-14 21:39:18 +0200 |
---|---|---|
committer | Jonathan B <greenbigfrog@gmail.com> | 2019-08-14 21:39:18 +0200 |
commit | e611e739d7177fbe5ee404e8b77e00bb584721cc (patch) | |
tree | bfad16f083ebe289fd7fc2e9dae842150e61fa98 /src/twitch/mappings/user.cr | |
parent | 99b3d7287bd0ac36ee82129ad38bd88c5b5af625 (diff) | |
download | twitcr-e611e739d7177fbe5ee404e8b77e00bb584721cc.tar.gz twitcr-e611e739d7177fbe5ee404e8b77e00bb584721cc.zip |
Add require
Diffstat (limited to 'src/twitch/mappings/user.cr')
-rw-r--r-- | src/twitch/mappings/user.cr | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/twitch/mappings/user.cr b/src/twitch/mappings/user.cr deleted file mode 100644 index 6ddd08b..0000000 --- a/src/twitch/mappings/user.cr +++ /dev/null @@ -1,21 +0,0 @@ -require "./converters" - -module Twitcr - struct UserList - JSON.mapping({data: Array(User)}) - end - - struct User - JSON.mapping({ - id: {type: UInt64, converter: ID::Converter}, - login: String, - display_name: String, - }) - end -end - -module ID::Converter - def self.from_json(value : JSON::PullParser) : UInt64 - UInt64.new(value.read_string) - end -end |