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