aboutsummaryrefslogtreecommitdiff
path: root/src/Aliment.purs
diff options
context:
space:
mode:
authorJoris2017-04-05 17:04:33 +0200
committerJoris2017-04-05 17:04:33 +0200
commit9a95a674fbbf1e64d3ad07922d569c3a1c751cf2 (patch)
tree2f99889040b0af406df1c403b9d930fe77e706cf /src/Aliment.purs
parentf6a73e5bd6a5e2d7d4eb9c8a14bdf1a0c8a4ac4c (diff)
Show aliments, glycemic index, carbohydrates and glycemic charge
Diffstat (limited to 'src/Aliment.purs')
-rw-r--r--src/Aliment.purs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/Aliment.purs b/src/Aliment.purs
deleted file mode 100644
index e7c4fc8..0000000
--- a/src/Aliment.purs
+++ /dev/null
@@ -1,13 +0,0 @@
-module Aliment where
-
-all :: Array Aliment
-all =
- [ { name: "Oignon", gi: 15 }
- , { name: "Olive", gi: 15 }
- , { name: "Haricot rouge", gi: 35 }
- ]
-
-type Aliment =
- { name :: String
- , gi :: Int
- }