BasicTypes -> Types
This commit is contained in:
parent
4ff7c1c7fb
commit
b41e13d23a
@ -3,7 +3,7 @@ where
|
|||||||
import qualified Data.Map as Map
|
import qualified Data.Map as Map
|
||||||
|
|
||||||
import Utils
|
import Utils
|
||||||
import BasicTypes
|
import Types
|
||||||
import AccountName
|
import AccountName
|
||||||
import Amount
|
import Amount
|
||||||
import Entry
|
import Entry
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
module AccountName
|
module AccountName
|
||||||
where
|
where
|
||||||
import Utils
|
import Utils
|
||||||
import BasicTypes
|
import Types
|
||||||
|
|
||||||
-- AccountNames are strings like "assets:cash:petty"; from these we build
|
-- AccountNames are strings like "assets:cash:petty"; from these we build
|
||||||
-- the chart of accounts, which should be a simple hierarchy.
|
-- the chart of accounts, which should be a simple hierarchy.
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
module Amount
|
module Amount
|
||||||
where
|
where
|
||||||
import Utils
|
import Utils
|
||||||
import BasicTypes
|
import Types
|
||||||
|
|
||||||
{-
|
{-
|
||||||
a simple amount is a currency, quantity pair:
|
a simple amount is a currency, quantity pair:
|
||||||
|
|||||||
2
Entry.hs
2
Entry.hs
@ -2,7 +2,7 @@
|
|||||||
module Entry
|
module Entry
|
||||||
where
|
where
|
||||||
import Utils
|
import Utils
|
||||||
import BasicTypes
|
import Types
|
||||||
import Transaction
|
import Transaction
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
module EntryTransaction
|
module EntryTransaction
|
||||||
where
|
where
|
||||||
import Utils
|
import Utils
|
||||||
import BasicTypes
|
import Types
|
||||||
import Entry
|
import Entry
|
||||||
import Transaction
|
import Transaction
|
||||||
import Amount
|
import Amount
|
||||||
|
|||||||
@ -4,7 +4,7 @@ import qualified Data.Map as Map
|
|||||||
|
|
||||||
import Utils
|
import Utils
|
||||||
import AccountName
|
import AccountName
|
||||||
import BasicTypes
|
import Types
|
||||||
import Entry
|
import Entry
|
||||||
import EntryTransaction
|
import EntryTransaction
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
-- data types & behaviours
|
-- data types & behaviours
|
||||||
module Models (
|
module Models (
|
||||||
module BasicTypes,
|
module Types,
|
||||||
module Amount,
|
module Amount,
|
||||||
module AccountName,
|
module AccountName,
|
||||||
module Transaction,
|
module Transaction,
|
||||||
@ -13,7 +13,7 @@ module Models (
|
|||||||
where
|
where
|
||||||
import qualified Data.Map as Map
|
import qualified Data.Map as Map
|
||||||
|
|
||||||
import BasicTypes
|
import Types
|
||||||
import Amount
|
import Amount
|
||||||
import AccountName
|
import AccountName
|
||||||
import Transaction
|
import Transaction
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
module TimeLog
|
module TimeLog
|
||||||
where
|
where
|
||||||
import Utils
|
import Utils
|
||||||
import BasicTypes
|
import Types
|
||||||
import Amount
|
import Amount
|
||||||
import Transaction
|
import Transaction
|
||||||
import Entry
|
import Entry
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
module Transaction
|
module Transaction
|
||||||
where
|
where
|
||||||
import Utils
|
import Utils
|
||||||
import BasicTypes
|
import Types
|
||||||
import AccountName
|
import AccountName
|
||||||
import Amount
|
import Amount
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
module BasicTypes
|
module Types
|
||||||
where
|
where
|
||||||
import Utils
|
import Utils
|
||||||
|
|
||||||
@ -20,7 +20,7 @@ hledger
|
|||||||
Transaction
|
Transaction
|
||||||
AccountName
|
AccountName
|
||||||
Amount
|
Amount
|
||||||
BasicTypes
|
Types
|
||||||
Utils
|
Utils
|
||||||
|
|
||||||
-}
|
-}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user