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