aboutsummaryrefslogtreecommitdiff
path: root/src/Model/Identity.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Model/Identity.hs')
-rw-r--r--src/Model/Identity.hs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/Model/Identity.hs b/src/Model/Identity.hs
deleted file mode 100644
index fb640fa..0000000
--- a/src/Model/Identity.hs
+++ /dev/null
@@ -1,14 +0,0 @@
-{-# LANGUAGE DeriveGeneric #-}
-
-module Model.Identity where
-
-import Data.Yaml
-import GHC.Generics
-
-data Identity = Identity
- { name :: String
- , website :: String
- , git :: String
- } deriving (Show, Read, Eq, Generic)
-
-instance FromJSON Identity