aboutsummaryrefslogtreecommitdiff
path: root/src/common/Model/SignIn.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/Model/SignIn.hs')
-rw-r--r--src/common/Model/SignIn.hs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/common/Model/SignIn.hs b/src/common/Model/SignIn.hs
deleted file mode 100644
index f4da97f..0000000
--- a/src/common/Model/SignIn.hs
+++ /dev/null
@@ -1,16 +0,0 @@
-{-# LANGUAGE DeriveGeneric #-}
-
-module Common.Model.SignIn
- ( SignIn(..)
- ) where
-
-import Data.Aeson (FromJSON, ToJSON)
-import Data.Text (Text)
-import GHC.Generics (Generic)
-
-data SignIn = SignIn
- { _signIn_email :: Text
- } deriving (Show, Generic)
-
-instance FromJSON SignIn
-instance ToJSON SignIn