aboutsummaryrefslogtreecommitdiff
path: root/src/Model/Authentication.hs
blob: be1337a74f60ad0d5a8566a91570bdbfe200b07f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{-# LANGUAGE DeriveGeneric #-}

module Model.Authentication (AuthenticationResponse (..)) where

import GHC.Generics
import Data.Text (Text)

----------------------------------------------------------------------------------------------------
data AuthenticationResponse = AuthenticationResponse -- delete?
  { userId :: Text
  }
  deriving (Show, Eq, Generic)