aboutsummaryrefslogtreecommitdiff
path: root/src/common/Model.hs
diff options
context:
space:
mode:
authorJoris2017-11-08 23:47:26 +0100
committerJoris2017-11-08 23:47:26 +0100
commit27e11b20b06f2f2dbfb56c0998a63169b4b8abc4 (patch)
tree845f54d7fe876c9a3078036975ba85ec21d224a1 /src/common/Model.hs
parenta3601b5e6f5a3e41fa31752a2c704ccd3632790e (diff)
downloadbudget-27e11b20b06f2f2dbfb56c0998a63169b4b8abc4.tar.gz
budget-27e11b20b06f2f2dbfb56c0998a63169b4b8abc4.tar.bz2
budget-27e11b20b06f2f2dbfb56c0998a63169b4b8abc4.zip
Use a better project structure
Diffstat (limited to 'src/common/Model.hs')
-rw-r--r--src/common/Model.hs40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/common/Model.hs b/src/common/Model.hs
deleted file mode 100644
index 075021f..0000000
--- a/src/common/Model.hs
+++ /dev/null
@@ -1,40 +0,0 @@
-module Common.Model
- ( Category(..)
- , CategoryId
- , CreateCategory(..)
- , CreateIncome(..)
- , CreatePayment(..)
- , Currency(..)
- , EditCategory(..)
- , EditIncome(..)
- , EditPayment(..)
- , Frequency(..)
- , Income(..)
- , IncomeId
- , Init(..)
- , InitResult(..)
- , Payment(..)
- , PaymentId
- , PaymentCategory(..)
- , PaymentCategoryId
- , SignIn(..)
- , User(..)
- , UserId
- ) where
-
-import Common.Model.Category (Category(..), CategoryId)
-import Common.Model.CreateCategory (CreateCategory(..))
-import Common.Model.CreateIncome (CreateIncome(..))
-import Common.Model.CreatePayment (CreatePayment(..))
-import Common.Model.Currency (Currency(..))
-import Common.Model.EditCategory (EditCategory(..))
-import Common.Model.EditIncome (EditIncome(..))
-import Common.Model.EditPayment (EditPayment(..))
-import Common.Model.Frequency (Frequency(..))
-import Common.Model.Income (Income(..), IncomeId)
-import Common.Model.Init (Init(..))
-import Common.Model.InitResult (InitResult(..))
-import Common.Model.Payment (Payment(..), PaymentId)
-import Common.Model.PaymentCategory (PaymentCategory(..), PaymentCategoryId)
-import Common.Model.SignIn (SignIn(..))
-import Common.Model.User (User(..), UserId)