diff options
| author | adambrangenberg <adabran06@gmail.com> | 2025-09-14 11:52:21 +0200 |
|---|---|---|
| committer | adambrangenberg <adabran06@gmail.com> | 2025-09-14 11:52:21 +0200 |
| commit | f8b26f8699d391d1558d95ccd907133403cb2b73 (patch) | |
| tree | 72789f15fd5755e5a34b0344db29b6cf4942fc7d /src/PostLoginsResponseLib.hs | |
login works, ig. Will remake everything now
Diffstat (limited to 'src/PostLoginsResponseLib.hs')
| -rw-r--r-- | src/PostLoginsResponseLib.hs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/PostLoginsResponseLib.hs b/src/PostLoginsResponseLib.hs new file mode 100644 index 0000000..51617b1 --- /dev/null +++ b/src/PostLoginsResponseLib.hs @@ -0,0 +1,10 @@ +module PostLoginsResponseLib (PostLoginsResponse, makePostLoginsResponse) where + +data PostLoginsResponse = PostLoginsResponse + { access_token :: String + , device_id :: String + , user_id :: String + } deriving (Eq, Show) + +makePostLoginsResponse :: String -> String -> String -> PostLoginsResponse +makePostLoginsResponse = PostLoginsResponse |