diff options
Diffstat (limited to 'src/common/Model/InitResult.hs')
-rw-r--r-- | src/common/Model/InitResult.hs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/common/Model/InitResult.hs b/src/common/Model/InitResult.hs new file mode 100644 index 0000000..43c16f9 --- /dev/null +++ b/src/common/Model/InitResult.hs @@ -0,0 +1,19 @@ +{-# 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 |