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