aboutsummaryrefslogtreecommitdiff
path: root/make_data.sh
diff options
context:
space:
mode:
Diffstat (limited to 'make_data.sh')
-rw-r--r--make_data.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/make_data.sh b/make_data.sh
deleted file mode 100644
index d35302c..0000000
--- a/make_data.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-echo "{-# LANGUAGE DeriveGeneric #-}
-
-module Data.$1Data ($1, make$1) where
-
-import Data.Aeson
-import Data.Aeson.TH
-import GHC.Generics (Generic)
-
-data $1 = $1
- {
- } deriving (Eq, Show, Generic)
-
-instance FromJSON $1 where
-instance ToJSON $1 where
-
-make$1 :: -> $1
-make$1 = $1" > ./src/Data/$1Data.hs
-echo "Created $1Data.hs"