Add files

This commit is contained in:
2025-01-02 11:16:57 +00:00
parent 9a8645c2be
commit 8bfaa12ea7
4 changed files with 72 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TemplateHaskell #-}
module Dodge.Data.BlBl where
import Data.Aeson
import Data.Aeson.TH
data BlBl
= BlNegate
| BlConst Bool
| BlId
deriving (Eq, Ord, Show, Read) --Generic, Flat)
deriveJSON defaultOptions ''BlBl